diff options
Diffstat (limited to 'icons-react/icons-js/planet-off.js')
-rw-r--r-- | icons-react/icons-js/planet-off.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/planet-off.js b/icons-react/icons-js/planet-off.js new file mode 100644 index 00000000..cf12c1be --- /dev/null +++ b/icons-react/icons-js/planet-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlanetOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-planet-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="M18.816 13.58c1.956 1.825 3.157 3.449 3.184 4.445m-3.428 .593c-2.098 -.634 -4.944 -2.03 -7.919 -3.976c-5.47 -3.579 -9.304 -7.664 -8.56 -9.123c.32 -.628 1.591 -.6 3.294 -.113" /><path d="M7.042 7.059a7 7 0 0 0 9.908 9.89m1.581 -2.425a7 7 0 0 0 -9.057 -9.054" /><path d="M3 3l18 18" /></svg>; +} + +export default IconPlanetOff;
\ No newline at end of file |