diff options
Diffstat (limited to 'icons-react/icons-js/wand.js')
-rw-r--r-- | icons-react/icons-js/wand.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/icons-react/icons-js/wand.js b/icons-react/icons-js/wand.js new file mode 100644 index 00000000..c2e61e9c --- /dev/null +++ b/icons-react/icons-js/wand.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWand = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-wand" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><polyline points="6 21 21 6 18 3 3 18 6 21" /><line x1={15} y1={6} x2={18} y2={9} /><path d="M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2" /><path d="M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2" /></svg>; + +export default IconWand;
\ No newline at end of file |