aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-06-16 23:28:42 +0200
committercodecalm <codecalm@gmail.com>2022-06-16 23:28:42 +0200
commit242f591d9fa27cb7e78487e59be7d62fde39e022 (patch)
tree243a396d939969eaf850ce2fdc711d5fb8a5df8c /icons-react/icons-js
parent18 new icons: `arrows-exchange-2`, `arrows-exchange`, `category-2`, `category... (diff)
downloadtabler-icons-242f591d9fa27cb7e78487e59be7d62fde39e022.tar.xz
Release 1.70.0v1.70.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/arrows-exchange-2.js12
-rw-r--r--icons-react/icons-js/arrows-exchange.js12
-rw-r--r--icons-react/icons-js/category-2.js12
-rw-r--r--icons-react/icons-js/category.js12
-rw-r--r--icons-react/icons-js/direction-sign.js12
-rw-r--r--icons-react/icons-js/discount-check.js12
-rw-r--r--icons-react/icons-js/fish-hook.js12
-rw-r--r--icons-react/icons-js/fridge.js12
-rw-r--r--icons-react/icons-js/health-recognition.js12
-rw-r--r--icons-react/icons-js/history-toggle.js12
-rw-r--r--icons-react/icons-js/meteor.js12
-rw-r--r--icons-react/icons-js/number.js12
-rw-r--r--icons-react/icons-js/scan-eye.js12
-rw-r--r--icons-react/icons-js/schema.js12
-rw-r--r--icons-react/icons-js/screenshot.js12
-rw-r--r--icons-react/icons-js/text-decrease.js12
-rw-r--r--icons-react/icons-js/text-increase.js12
-rw-r--r--icons-react/icons-js/text-recognition.js12
18 files changed, 216 insertions, 0 deletions
diff --git a/icons-react/icons-js/arrows-exchange-2.js b/icons-react/icons-js/arrows-exchange-2.js
new file mode 100644
index 00000000..b536c12c
--- /dev/null
+++ b/icons-react/icons-js/arrows-exchange-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowsExchange2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-exchange-2" 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 10h-14l4 -4" /><path d="M7 14h14l-4 4" /></svg>;
+}
+
+export default IconArrowsExchange2; \ No newline at end of file
diff --git a/icons-react/icons-js/arrows-exchange.js b/icons-react/icons-js/arrows-exchange.js
new file mode 100644
index 00000000..f23a98a9
--- /dev/null
+++ b/icons-react/icons-js/arrows-exchange.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconArrowsExchange({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-exchange" 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 10h14l-4 -4" /><path d="M17 14h-14l4 4" /></svg>;
+}
+
+export default IconArrowsExchange; \ No newline at end of file
diff --git a/icons-react/icons-js/category-2.js b/icons-react/icons-js/category-2.js
new file mode 100644
index 00000000..8e01e8ca
--- /dev/null
+++ b/icons-react/icons-js/category-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCategory2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-category-2" 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 4h6v6h-6z" /><path d="M4 14h6v6h-6z" /><circle cx={17} cy={17} r={3} /><circle cx={7} cy={7} r={3} /></svg>;
+}
+
+export default IconCategory2; \ No newline at end of file
diff --git a/icons-react/icons-js/category.js b/icons-react/icons-js/category.js
new file mode 100644
index 00000000..e28ff8ec
--- /dev/null
+++ b/icons-react/icons-js/category.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCategory({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-category" 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 4h6v6h-6z" /><path d="M14 4h6v6h-6z" /><path d="M4 14h6v6h-6z" /><circle cx={17} cy={17} r={3} /></svg>;
+}
+
+export default IconCategory; \ No newline at end of file
diff --git a/icons-react/icons-js/direction-sign.js b/icons-react/icons-js/direction-sign.js
new file mode 100644
index 00000000..48bcd5d4
--- /dev/null
+++ b/icons-react/icons-js/direction-sign.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDirectionSign({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-direction-sign" 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="M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z" /><path d="M8 12h7.5" /><path d="M12 8.5l3.5 3.5l-3.5 3.5" /></svg>;
+}
+
+export default IconDirectionSign; \ No newline at end of file
diff --git a/icons-react/icons-js/discount-check.js b/icons-react/icons-js/discount-check.js
new file mode 100644
index 00000000..eff2312c
--- /dev/null
+++ b/icons-react/icons-js/discount-check.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDiscountCheck({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-discount-check" 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="M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" /><path d="M9 12l2 2l4 -4" /></svg>;
+}
+
+export default IconDiscountCheck; \ No newline at end of file
diff --git a/icons-react/icons-js/fish-hook.js b/icons-react/icons-js/fish-hook.js
new file mode 100644
index 00000000..d754dfd1
--- /dev/null
+++ b/icons-react/icons-js/fish-hook.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFishHook({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fish-hook" 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 9v6a5 5 0 0 1 -10 0v-4l3 3" /><circle cx={16} cy={7} r={2} /><path d="M16 5v-2" /></svg>;
+}
+
+export default IconFishHook; \ No newline at end of file
diff --git a/icons-react/icons-js/fridge.js b/icons-react/icons-js/fridge.js
new file mode 100644
index 00000000..9135f759
--- /dev/null
+++ b/icons-react/icons-js/fridge.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFridge({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-fridge" 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" /><rect x={5} y={3} width={14} height={18} rx={2} /><path d="M5 10h14" /><path d="M9 13v3" /><path d="M9 6v1" /></svg>;
+}
+
+export default IconFridge; \ No newline at end of file
diff --git a/icons-react/icons-js/health-recognition.js b/icons-react/icons-js/health-recognition.js
new file mode 100644
index 00000000..5c2ca4c8
--- /dev/null
+++ b/icons-react/icons-js/health-recognition.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHealthRecognition({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-health-recognition" 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 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /><path d="M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z" /></svg>;
+}
+
+export default IconHealthRecognition; \ No newline at end of file
diff --git a/icons-react/icons-js/history-toggle.js b/icons-react/icons-js/history-toggle.js
new file mode 100644
index 00000000..c624acb3
--- /dev/null
+++ b/icons-react/icons-js/history-toggle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconHistoryToggle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-history-toggle" 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="M12 8v4l3 3" /><path d="M8.56 3.69a9 9 0 0 0 -2.92 1.95" /><path d="M3.69 8.56a9 9 0 0 0 -.69 3.44" /><path d="M3.69 15.44a9 9 0 0 0 1.95 2.92" /><path d="M8.56 20.31a9 9 0 0 0 3.44 .69" /><path d="M15.44 20.31a9 9 0 0 0 2.92 -1.95" /><path d="M20.31 15.44a9 9 0 0 0 .69 -3.44" /><path d="M20.31 8.56a9 9 0 0 0 -1.95 -2.92" /><path d="M15.44 3.69a9 9 0 0 0 -3.44 -.69" /></svg>;
+}
+
+export default IconHistoryToggle; \ No newline at end of file
diff --git a/icons-react/icons-js/meteor.js b/icons-react/icons-js/meteor.js
new file mode 100644
index 00000000..584403dc
--- /dev/null
+++ b/icons-react/icons-js/meteor.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMeteor({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-meteor" 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="M21 3l-5 9h5l-6.891 7.086a6.5 6.5 0 1 1 -8.855 -9.506l7.746 -6.58l-1 5l9 -5z" /><circle cx={9.5} cy={14.5} r={2.5} /></svg>;
+}
+
+export default IconMeteor; \ No newline at end of file
diff --git a/icons-react/icons-js/number.js b/icons-react/icons-js/number.js
new file mode 100644
index 00000000..54f13808
--- /dev/null
+++ b/icons-react/icons-js/number.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconNumber({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-number" 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 17v-10l7 10v-10" /><path d="M15 17h5" /><ellipse cx={17.5} cy={10} rx={2.5} ry={3} /></svg>;
+}
+
+export default IconNumber; \ No newline at end of file
diff --git a/icons-react/icons-js/scan-eye.js b/icons-react/icons-js/scan-eye.js
new file mode 100644
index 00000000..95a0290d
--- /dev/null
+++ b/icons-react/icons-js/scan-eye.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScanEye({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-scan-eye" 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 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /><path d="M7 12c3.333 -4.667 6.667 -4.667 10 0" /><path d="M7 12c3.333 4.667 6.667 4.667 10 0" /><path d="M12 12h-.01" /></svg>;
+}
+
+export default IconScanEye; \ No newline at end of file
diff --git a/icons-react/icons-js/schema.js b/icons-react/icons-js/schema.js
new file mode 100644
index 00000000..2a7143b4
--- /dev/null
+++ b/icons-react/icons-js/schema.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSchema({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-schema" 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="M5 2h5v4h-5z" /><path d="M15 10h5v4h-5z" /><path d="M5 18h5v4h-5z" /><path d="M5 10h5v4h-5z" /><path d="M10 12h5" /><path d="M7.5 6v4" /><path d="M7.5 14v4" /></svg>;
+}
+
+export default IconSchema; \ No newline at end of file
diff --git a/icons-react/icons-js/screenshot.js b/icons-react/icons-js/screenshot.js
new file mode 100644
index 00000000..76796de1
--- /dev/null
+++ b/icons-react/icons-js/screenshot.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconScreenshot({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-screenshot" 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 19a2 2 0 0 1 -2 -2" /><path d="M5 13v-2" /><path d="M5 7a2 2 0 0 1 2 -2" /><path d="M11 5h2" /><path d="M17 5a2 2 0 0 1 2 2" /><path d="M19 11v2" /><path d="M19 17v4" /><path d="M21 19h-4" /><path d="M13 19h-2" /></svg>;
+}
+
+export default IconScreenshot; \ No newline at end of file
diff --git a/icons-react/icons-js/text-decrease.js b/icons-react/icons-js/text-decrease.js
new file mode 100644
index 00000000..6819dae0
--- /dev/null
+++ b/icons-react/icons-js/text-decrease.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTextDecrease({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-decrease" 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 19v-10.5a3.5 3.5 0 1 1 7 0v10.5" /><path d="M4 13h7" /><path d="M21 12h-6" /></svg>;
+}
+
+export default IconTextDecrease; \ No newline at end of file
diff --git a/icons-react/icons-js/text-increase.js b/icons-react/icons-js/text-increase.js
new file mode 100644
index 00000000..aaa809a7
--- /dev/null
+++ b/icons-react/icons-js/text-increase.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTextIncrease({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-increase" 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 19v-10.5a3.5 3.5 0 1 1 7 0v10.5" /><path d="M4 13h7" /><path d="M18 9v6" /><path d="M21 12h-6" /></svg>;
+}
+
+export default IconTextIncrease; \ No newline at end of file
diff --git a/icons-react/icons-js/text-recognition.js b/icons-react/icons-js/text-recognition.js
new file mode 100644
index 00000000..7a90fbf5
--- /dev/null
+++ b/icons-react/icons-js/text-recognition.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTextRecognition({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-recognition" 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 8v-2a2 2 0 0 1 2 -2h2" /><path d="M4 16v2a2 2 0 0 0 2 2h2" /><path d="M16 4h2a2 2 0 0 1 2 2v2" /><path d="M16 20h2a2 2 0 0 0 2 -2v-2" /><path d="M12 16v-7" /><path d="M9 9h6" /></svg>;
+}
+
+export default IconTextRecognition; \ No newline at end of file