diff options
Diffstat (limited to 'icons-react/icons-js/wand-off.js')
-rw-r--r-- | icons-react/icons-js/wand-off.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/wand-off.js b/icons-react/icons-js/wand-off.js new file mode 100644 index 00000000..9199346f --- /dev/null +++ b/icons-react/icons-js/wand-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconWandOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-wand-off" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M10.5 10.5l-7.5 7.5l3 3l7.5 -7.5m2 -2l5.5 -5.5l-3 -3l-5.5 5.5" /><path d="M15 6l3 3" /><path d="M8.433 4.395c.35 -.36 .567 -.852 .567 -1.395a2 2 0 0 0 2 2c-.554 0 -1.055 .225 -1.417 .589" /><path d="M18.418 14.41c.36 -.36 .582 -.86 .582 -1.41a2 2 0 0 0 2 2c-.555 0 -1.056 .226 -1.419 .59" /><path d="M3 3l18 18" /></svg>; +} + +export default IconWandOff;
\ No newline at end of file |