aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/flower.js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-01-16 22:08:51 +0100
committercodecalm <codecalm@gmail.com>2022-01-16 22:08:51 +0100
commitad702b5366828b549cb422d31a431f06bbd1b09d (patch)
tree67093c11e6dab990e74c0e6bc21d50c633f0990d /icons-react/icons-js/flower.js
parent22 new icons: `app-window`, `armchair-2`, `arrow-big-down-line`, `arrow-big-d... (diff)
downloadtabler-icons-ad702b5366828b549cb422d31a431f06bbd1b09d.tar.xz
Release 1.52.0v1.52.0
Diffstat (limited to 'icons-react/icons-js/flower.js')
-rw-r--r--icons-react/icons-js/flower.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/flower.js b/icons-react/icons-js/flower.js
new file mode 100644
index 00000000..398abdc2
--- /dev/null
+++ b/icons-react/icons-js/flower.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFlower({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-flower" 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" /><circle cx={12} cy={12} r={3} /><path d="M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1.002 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c.995 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1.003 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-.995 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z" /></svg>;
+}
+
+export default IconFlower; \ No newline at end of file