diff options
Diffstat (limited to 'icons-react/icons-js/geometry.js')
-rw-r--r-- | icons-react/icons-js/geometry.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/geometry.js b/icons-react/icons-js/geometry.js new file mode 100644 index 00000000..0138256e --- /dev/null +++ b/icons-react/icons-js/geometry.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGeometry({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-geometry" 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="M7 21l4 -12m2 0l1.48 4.439m.949 2.847l1.571 4.714" /><circle cx={12} cy={7} r={2} /><path d="M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473 -2.048 8 -5" /><path d="M12 5v-2" /></svg>; +} + +export default IconGeometry;
\ No newline at end of file |