aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/crown-off.js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js/crown-off.js')
-rw-r--r--icons-react/icons-js/crown-off.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/crown-off.js b/icons-react/icons-js/crown-off.js
new file mode 100644
index 00000000..52cddf66
--- /dev/null
+++ b/icons-react/icons-js/crown-off.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCrownOff({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-crown-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 18h-13l-1.865 -9.327a0.25 .25 0 0 1 .4 -.244l4.465 3.571l1.6 -2.4m1.596 -2.394l.804 -1.206l4 6l4.464 -3.571a0.25 .25 0 0 1 .401 .244l-1.363 6.818" /><line x1={3} y1={3} x2={21} y2={21} /></svg>;
+}
+
+export default IconCrownOff; \ No newline at end of file