aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/fish-bone.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/fish-bone.js')
-rw-r--r--icons-react/icons-js/fish-bone.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/fish-bone.js b/icons-react/icons-js/fish-bone.js
new file mode 100644
index 00000000..731dac44
--- /dev/null
+++ b/icons-react/icons-js/fish-bone.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFishBone({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fish-bone" 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="M16.69 7.44a6.973 6.973 0 0 0 -1.69 4.56a6.97 6.97 0 0 0 1.699 4.571m0 -.004c1.914 -.684 3.691 -2.183 5.301 -4.565c-1.613 -2.384 -3.394 -3.883 -5.312 -4.565" /><path d="M2 9.504a40.73 40.73 0 0 0 2.422 2.504a39.679 39.679 0 0 0 -2.422 2.498" /><path d="M18 11v.01" /><path d="M4.422 12.005h10.578" /><path d="M7 10v4" /><path d="M11 8v8" /></svg>;
+}
+
+export default IconFishBone; \ No newline at end of file