aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/divide.js5
-rw-r--r--icons-react/icons-js/file-search.js5
-rw-r--r--icons-react/icons-js/map-pins.js5
-rw-r--r--icons-react/icons-js/pin.js2
-rw-r--r--icons-react/icons-js/pinned-off.js5
-rw-r--r--icons-react/icons-js/pinned.js5
-rw-r--r--icons-react/icons-js/speakerphone.js5
-rw-r--r--icons-react/icons-js/star-off.js5
-rw-r--r--icons-react/icons-js/sun-off.js5
-rw-r--r--icons-react/icons-js/tools-kitchen.js5
-rw-r--r--icons-react/icons-js/trash-off.js5
-rw-r--r--icons-react/icons-js/virus-off.js5
-rw-r--r--icons-react/icons-js/virus-search.js5
13 files changed, 61 insertions, 1 deletions
diff --git a/icons-react/icons-js/divide.js b/icons-react/icons-js/divide.js
new file mode 100644
index 0000000..f5302cd
--- /dev/null
+++ b/icons-react/icons-js/divide.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconDivide = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-divide" 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 fill="currentColor" cx={12} cy={6} r={1} /><circle fill="currentColor" cx={12} cy={18} r={1} /><line x1={5} y1={12} x2={19} y2={12} /></svg>;
+
+export default IconDivide; \ No newline at end of file
diff --git a/icons-react/icons-js/file-search.js b/icons-react/icons-js/file-search.js
new file mode 100644
index 0000000..944da54
--- /dev/null
+++ b/icons-react/icons-js/file-search.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconFileSearch = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-file-search" 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="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5" /><circle cx={16.5} cy={17.5} r={2.5} /><line x1={18.5} y1={19.5} x2={21} y2={22} /></svg>;
+
+export default IconFileSearch; \ No newline at end of file
diff --git a/icons-react/icons-js/map-pins.js b/icons-react/icons-js/map-pins.js
new file mode 100644
index 0000000..b98875e
--- /dev/null
+++ b/icons-react/icons-js/map-pins.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconMapPins = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-map-pins" 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="M10.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z" /><line x1={8} y1={7} x2={8} y2={7.01} /><path d="M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z" /><line x1={16} y1={15} x2={16} y2={15.01} /></svg>;
+
+export default IconMapPins; \ No newline at end of file
diff --git a/icons-react/icons-js/pin.js b/icons-react/icons-js/pin.js
index 3924a8b..0d1cabf 100644
--- a/icons-react/icons-js/pin.js
+++ b/icons-react/icons-js/pin.js
@@ -1,5 +1,5 @@
import * as React from "react";
-const IconPin = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pin" 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" /><line x1={4} y1={20} x2={9.5} y2={14.5} /><path d="M6 11l7 7l1 -1l1 -4l4 -4m-4 -4l-4 4l-4 1l-1 1" /><line x1={14} y1={4} x2={20} y2={10} /></svg>;
+const IconPin = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pin" 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="M15 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4" /><line x1={9} y1={15} x2={4.5} y2={19.5} /><line x1={14.5} y1={4} x2={20} y2={9.5} /></svg>;
export default IconPin; \ No newline at end of file
diff --git a/icons-react/icons-js/pinned-off.js b/icons-react/icons-js/pinned-off.js
new file mode 100644
index 0000000..266d76e
--- /dev/null
+++ b/icons-react/icons-js/pinned-off.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconPinnedOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pinned-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251" /><line x1={9} y1={15} x2={4.5} y2={19.5} /><line x1={14.5} y1={4} x2={20} y2={9.5} /></svg>;
+
+export default IconPinnedOff; \ No newline at end of file
diff --git a/icons-react/icons-js/pinned.js b/icons-react/icons-js/pinned.js
new file mode 100644
index 0000000..4e164f3
--- /dev/null
+++ b/icons-react/icons-js/pinned.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconPinned = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pinned" 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="M9 4v6l-2 4v2h10v-2l-2 -4v-6" /><line x1={12} y1={16} x2={12} y2={21} /><line x1={8} y1={4} x2={16} y2={4} /></svg>;
+
+export default IconPinned; \ No newline at end of file
diff --git a/icons-react/icons-js/speakerphone.js b/icons-react/icons-js/speakerphone.js
new file mode 100644
index 0000000..ecdc596
--- /dev/null
+++ b/icons-react/icons-js/speakerphone.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconSpeakerphone = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-speakerphone" 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 8a3 3 0 0 1 0 6" /><path d="M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5" /><path d="M12 8h0l4.524 -3.77a0.9 .9 0 0 1 1.476 .692v12.156a0.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8" /></svg>;
+
+export default IconSpeakerphone; \ No newline at end of file
diff --git a/icons-react/icons-js/star-off.js b/icons-react/icons-js/star-off.js
new file mode 100644
index 0000000..629bed8
--- /dev/null
+++ b/icons-react/icons-js/star-off.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconStarOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-star-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917" /></svg>;
+
+export default IconStarOff; \ No newline at end of file
diff --git a/icons-react/icons-js/sun-off.js b/icons-react/icons-js/sun-off.js
new file mode 100644
index 0000000..6e6a24c
--- /dev/null
+++ b/icons-react/icons-js/sun-off.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconSunOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-sun-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654" /><path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" /></svg>;
+
+export default IconSunOff; \ No newline at end of file
diff --git a/icons-react/icons-js/tools-kitchen.js b/icons-react/icons-js/tools-kitchen.js
new file mode 100644
index 0000000..b0444e1
--- /dev/null
+++ b/icons-react/icons-js/tools-kitchen.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconToolsKitchen = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-tools-kitchen" 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="M4 3h8l-1 9h-6z" /><path d="M7 18h2v3h-2z" /><path d="M20 3v12h-5c-.023-3.681.184-7.406 5-12z" /><path d="M20 15v6h-1v-3" /><line x1={8} y1={12} x2={8} y2={18} /></svg>;
+
+export default IconToolsKitchen; \ No newline at end of file
diff --git a/icons-react/icons-js/trash-off.js b/icons-react/icons-js/trash-off.js
new file mode 100644
index 0000000..dd52be8
--- /dev/null
+++ b/icons-react/icons-js/trash-off.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconTrashOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-trash-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M4 7h3m4 0h9" /><line x1={10} y1={11} x2={10} y2={17} /><line x1={14} y1={14} x2={14} y2={17} /><path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923" /><line x1={18.384} y1={14.373} x2={19} y2={7} /><path d="M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3" /></svg>;
+
+export default IconTrashOff; \ No newline at end of file
diff --git a/icons-react/icons-js/virus-off.js b/icons-react/icons-js/virus-off.js
new file mode 100644
index 0000000..cf63f67
--- /dev/null
+++ b/icons-react/icons-js/virus-off.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconVirusOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-virus-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M8.469 8.46a5 5 0 0 0 7.058 7.084m1.386 -2.608a5 5 0 0 0 -5.826 -5.853" /><path d="M12 7v-4m-1 0h2" /><path d="M12 7v-4m-1 0h2" transform="rotate(45 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(90 12 12)" /><line x1={12} y1={3} x2={13} y2={3} transform="rotate(135 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(180 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(225 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(270 12 12)" /><line x1={12} y1={3} x2={11} y2={3} transform="rotate(315 12 12)" /></svg>;
+
+export default IconVirusOff; \ No newline at end of file
diff --git a/icons-react/icons-js/virus-search.js b/icons-react/icons-js/virus-search.js
new file mode 100644
index 0000000..6b54958
--- /dev/null
+++ b/icons-react/icons-js/virus-search.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconVirusSearch = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-virus-search" 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="M17 12a5 5 0 1 0 -5 5" /><path d="M12 7v-4m-1 0h2" /><path d="M12 7v-4m-1 0h2" transform="rotate(45 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(90 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(180 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(225 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(270 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(315 12 12)" /><circle cx={17.5} cy={17.5} r={2.5} /><line x1={19.5} y1={19.5} x2={22} y2={22} /></svg>;
+
+export default IconVirusSearch; \ No newline at end of file