diff options
Diffstat (limited to 'icons-react/icons-js/color-swatch-off.js')
-rw-r--r-- | icons-react/icons-js/color-swatch-off.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/color-swatch-off.js b/icons-react/icons-js/color-swatch-off.js new file mode 100644 index 00000000..2a3885d9 --- /dev/null +++ b/icons-react/icons-js/color-swatch-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconColorSwatchOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-color-swatch-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="M13 13v4a4 4 0 0 0 6.832 2.825m1.168 -2.825v-12a2 2 0 0 0 -2 -2h-4a2 2 0 0 0 -2 2v4" /><path d="M13 7.35l-2 -2a2 2 0 0 0 -2.11 -.461m-2.13 1.874l-1.416 1.415a2 2 0 0 0 0 2.828l9 9" /><path d="M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12" /><path d="M17 17v.01" /><path d="M3 3l18 18" /></svg>; +} + +export default IconColorSwatchOff;
\ No newline at end of file |