aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2021-04-18 16:53:56 +0200
committercodecalm <codecalm@gmail.com>2021-04-18 16:53:56 +0200
commit8df08c3407dc8ea1622de6c140017675d343702e (patch)
treeca4f73ba2bcf3f31243fd314091a95201a4d5928 /icons-react
parenticons tags (diff)
downloadtabler-icons-8df08c3407dc8ea1622de6c140017675d343702e.tar.xz
Release 1.40.0v1.40.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/affiliate.js2
-rw-r--r--icons-react/icons-js/bottle.js12
-rw-r--r--icons-react/icons-js/brand-javascript.js12
-rw-r--r--icons-react/icons-js/candy.js12
-rw-r--r--icons-react/icons-js/coffee.js12
-rw-r--r--icons-react/icons-js/cookie.js12
-rw-r--r--icons-react/icons-js/lemon.js12
-rw-r--r--icons-react/icons-js/list-numbers.js12
-rw-r--r--icons-react/icons-js/meat.js12
-rw-r--r--icons-react/icons-js/milk.js12
-rw-r--r--icons-react/icons-js/mushroom.js12
-rw-r--r--icons-react/icons-js/pepper.js12
-rw-r--r--icons-react/icons-js/pizza.js2
-rw-r--r--icons-react/icons-js/salt.js12
-rw-r--r--icons-react/icons-js/sausage.js12
-rw-r--r--icons-react/icons-js/sort-ascending-letters.js12
-rw-r--r--icons-react/icons-js/sort-ascending-numbers.js12
-rw-r--r--icons-react/icons-js/sort-descending-letters.js12
-rw-r--r--icons-react/icons-js/sort-descending-numbers.js12
-rw-r--r--icons-react/icons-js/sunrise.js12
-rw-r--r--icons-react/icons-js/sunset.js2
-rw-r--r--icons-react/icons-js/vector-bezier.js12
-rw-r--r--icons-react/icons-js/vocabulary.js12
-rw-r--r--icons-react/index.d.ts22
-rw-r--r--icons-react/index.js22
25 files changed, 283 insertions, 7 deletions
diff --git a/icons-react/icons-js/affiliate.js b/icons-react/icons-js/affiliate.js
index 725b4400..f51f9659 100644
--- a/icons-react/icons-js/affiliate.js
+++ b/icons-react/icons-js/affiliate.js
@@ -6,7 +6,7 @@ function IconAffiliate({
stroke = 2,
...props
}) {
- return <svg className="icon icon-tabler icon-tabler-affiliate" 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.5 5.5l1.706 5.685m5.607 5.609l5.687 1.706" /><path d="M11.683 12.317l6.817 -6.817" /><circle cx={5.5} cy={5.5} r={1.5} /><circle cx={18.5} cy={5.5} r={1.5} /><circle cx={18.5} cy={18.5} r={1.5} /><circle cx={8.5} cy={15.5} r={4.5} /></svg>;
+ return <svg className="icon icon-tabler icon-tabler-affiliate" 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.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275" /><path d="M11.683 12.317l5.759 -5.759" /><circle cx={5.5} cy={5.5} r={1.5} /><circle cx={18.5} cy={5.5} r={1.5} /><circle cx={18.5} cy={18.5} r={1.5} /><circle cx={8.5} cy={15.5} r={4.5} /></svg>;
}
export default IconAffiliate; \ No newline at end of file
diff --git a/icons-react/icons-js/bottle.js b/icons-react/icons-js/bottle.js
new file mode 100644
index 00000000..9aed347c
--- /dev/null
+++ b/icons-react/icons-js/bottle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBottle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-bottle" 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 5h4v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v2z" /><path d="M14 3.5c0 1.626 .507 3.212 1.45 4.537l.05 .07a8.093 8.093 0 0 1 1.5 4.694v6.199a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-6.2c0 -1.682 .524 -3.322 1.5 -4.693l.05 -.07a7.823 7.823 0 0 0 1.45 -4.537" /><path d="M7.003 14.803a2.4 2.4 0 0 0 .997 -.803a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 1 -.805" /></svg>;
+}
+
+export default IconBottle; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-javascript.js b/icons-react/icons-js/brand-javascript.js
new file mode 100644
index 00000000..6858ee77
--- /dev/null
+++ b/icons-react/icons-js/brand-javascript.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandJavascript({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-brand-javascript" 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="M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z" /><path d="M7.5 8h3v8l-2 -1" /><path d="M16.5 8h-2.5a0.5 .5 0 0 0 -.5 .5v3a0.5 .5 0 0 0 .5 .5h1.423a0.5 .5 0 0 1 .495 .57l-.418 2.93l-2 .5" /></svg>;
+}
+
+export default IconBrandJavascript; \ No newline at end of file
diff --git a/icons-react/icons-js/candy.js b/icons-react/icons-js/candy.js
new file mode 100644
index 00000000..828821f3
--- /dev/null
+++ b/icons-react/icons-js/candy.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCandy({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-candy" 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.05 11.293l4.243 -4.243a2 2 0 0 1 2.828 0l2.829 2.83a2 2 0 0 1 0 2.828l-4.243 4.243a2 2 0 0 1 -2.828 0l-2.829 -2.831a2 2 0 0 1 0 -2.828z" /><path d="M16.243 9.172l3.086 -.772a1.5 1.5 0 0 0 .697 -2.516l-2.216 -2.217a1.5 1.5 0 0 0 -2.44 .47l-1.248 2.913" /><path d="M9.172 16.243l-.772 3.086a1.5 1.5 0 0 1 -2.516 .697l-2.217 -2.216a1.5 1.5 0 0 1 .47 -2.44l2.913 -1.248" /></svg>;
+}
+
+export default IconCandy; \ No newline at end of file
diff --git a/icons-react/icons-js/coffee.js b/icons-react/icons-js/coffee.js
new file mode 100644
index 00000000..c19701ab
--- /dev/null
+++ b/icons-react/icons-js/coffee.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCoffee({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-coffee" 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 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1" /><path d="M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2" /><path d="M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2" /><path d="M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z" /><path d="M16.746 16.726a3 3 0 1 0 .252 -5.555" /></svg>;
+}
+
+export default IconCoffee; \ No newline at end of file
diff --git a/icons-react/icons-js/cookie.js b/icons-react/icons-js/cookie.js
new file mode 100644
index 00000000..56241ab6
--- /dev/null
+++ b/icons-react/icons-js/cookie.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCookie({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-cookie" 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="M8 13v.01" /><path d="M12 17v.01" /><path d="M12 12v.01" /><path d="M16 14v.01" /><path d="M11 8v.01" /><path d="M13.148 3.476l2.667 1.104a4 4 0 0 0 4.656 6.14l.053 .132a3 3 0 0 1 0 2.296c-.497 .786 -.838 1.404 -1.024 1.852c-.189 .456 -.409 1.194 -.66 2.216a3 3 0 0 1 -1.624 1.623c-1.048 .263 -1.787 .483 -2.216 .661c-.475 .197 -1.092 .538 -1.852 1.024a3 3 0 0 1 -2.296 0c-.802 -.503 -1.419 -.844 -1.852 -1.024c-.471 -.195 -1.21 -.415 -2.216 -.66a3 3 0 0 1 -1.623 -1.624c-.265 -1.052 -.485 -1.79 -.661 -2.216c-.198 -.479 -.54 -1.096 -1.024 -1.852a3 3 0 0 1 0 -2.296c.48 -.744 .82 -1.361 1.024 -1.852c.171 -.413 .391 -1.152 .66 -2.216a3 3 0 0 1 1.624 -1.623c1.032 -.256 1.77 -.476 2.216 -.661c.458 -.19 1.075 -.531 1.852 -1.024a3 3 0 0 1 2.296 0z" /></svg>;
+}
+
+export default IconCookie; \ No newline at end of file
diff --git a/icons-react/icons-js/lemon.js b/icons-react/icons-js/lemon.js
new file mode 100644
index 00000000..da7aaa0c
--- /dev/null
+++ b/icons-react/icons-js/lemon.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconLemon({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-lemon" 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.536 3.393c3.905 3.906 3.905 10.237 0 14.143c-3.906 3.905 -10.237 3.905 -14.143 0l14.143 -14.143" /><path d="M5.868 15.06a6.5 6.5 0 0 0 9.193 -9.192" /><path d="M10.464 10.464l4.597 4.597" /><path d="M10.464 10.464v6.364" /><path d="M10.464 10.464h6.364" /></svg>;
+}
+
+export default IconLemon; \ No newline at end of file
diff --git a/icons-react/icons-js/list-numbers.js b/icons-react/icons-js/list-numbers.js
new file mode 100644
index 00000000..1720d8f7
--- /dev/null
+++ b/icons-react/icons-js/list-numbers.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconListNumbers({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-list-numbers" 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="M11 6h9" /><path d="M11 12h9" /><path d="M12 18h8" /><path d="M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" /><path d="M6 10v-6l-2 2" /></svg>;
+}
+
+export default IconListNumbers; \ No newline at end of file
diff --git a/icons-react/icons-js/meat.js b/icons-react/icons-js/meat.js
new file mode 100644
index 00000000..599fcc92
--- /dev/null
+++ b/icons-react/icons-js/meat.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMeat({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-meat" 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="M13.62 8.382l1.966 -1.967a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-1.82 1.821" /><ellipse transform="rotate(45 8.025 16.475)" cx={8.025} cy={16.475} rx={7} ry={3} /><path d="M7.5 16l1 1" /><path d="M12.975 21.425c3.905 -3.906 4.855 -9.288 2.121 -12.021c-2.733 -2.734 -8.115 -1.784 -12.02 2.121" /></svg>;
+}
+
+export default IconMeat; \ No newline at end of file
diff --git a/icons-react/icons-js/milk.js b/icons-react/icons-js/milk.js
new file mode 100644
index 00000000..8e38ba00
--- /dev/null
+++ b/icons-react/icons-js/milk.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMilk({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-milk" 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="M8 6h8v-2a1 1 0 0 0 -1 -1h-6a1 1 0 0 0 -1 1v2z" /><path d="M16 6l1.094 1.759a6 6 0 0 1 .906 3.17v8.071a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8.071a6 6 0 0 1 .906 -3.17l1.094 -1.759" /><circle cx={12} cy={16} r={2} /><path d="M10 10h4" /></svg>;
+}
+
+export default IconMilk; \ No newline at end of file
diff --git a/icons-react/icons-js/mushroom.js b/icons-react/icons-js/mushroom.js
new file mode 100644
index 00000000..e5549393
--- /dev/null
+++ b/icons-react/icons-js/mushroom.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMushroom({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-mushroom" 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="M20 11.1c0 -4.474 -3.582 -8.1 -8 -8.1s-8 3.626 -8 8.1a0.9 .9 0 0 0 .9 .9h14.2a0.9 .9 0 0 0 .9 -.9z" /><path d="M10 12v7a2 2 0 1 0 4 0v-7" /></svg>;
+}
+
+export default IconMushroom; \ No newline at end of file
diff --git a/icons-react/icons-js/pepper.js b/icons-react/icons-js/pepper.js
new file mode 100644
index 00000000..17e188c9
--- /dev/null
+++ b/icons-react/icons-js/pepper.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPepper({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-pepper" 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="M13 11c0 2.21 -2.239 4 -5 4s-5 -1.79 -5 -4a8 8 0 1 0 16 0a3 3 0 0 0 -6 0" /><path d="M16 8c0 -2 2 -4 4 -4" /></svg>;
+}
+
+export default IconPepper; \ No newline at end of file
diff --git a/icons-react/icons-js/pizza.js b/icons-react/icons-js/pizza.js
index 755a5d73..2a23bc87 100644
--- a/icons-react/icons-js/pizza.js
+++ b/icons-react/icons-js/pizza.js
@@ -6,7 +6,7 @@ function IconPizza({
stroke = 2,
...props
}) {
- return <svg className="icon icon-tabler icon-tabler-pizza" 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 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z" /><path d="M5.2 15.772a14.939 14.939 0 0 0 6.995 1.728a14.944 14.944 0 0 0 6.638 -1.545" /><line x1={13} y1={11.01} x2={13} y2={11} /><line x1={11} y1={14} x2={11} y2={13.99} /></svg>;
+ return <svg className="icon icon-tabler icon-tabler-pizza" 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 21.5c-3.04 0 -5.952 -.714 -8.5 -1.983l8.5 -16.517l8.5 16.517a19.09 19.09 0 0 1 -8.5 1.983z" /><path d="M5.38 15.866a14.94 14.94 0 0 0 6.815 1.634a14.944 14.944 0 0 0 6.502 -1.479" /><path d="M13 11.01v-.01" /><path d="M11 14v-.01" /></svg>;
}
export default IconPizza; \ No newline at end of file
diff --git a/icons-react/icons-js/salt.js b/icons-react/icons-js/salt.js
new file mode 100644
index 00000000..651fc21e
--- /dev/null
+++ b/icons-react/icons-js/salt.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSalt({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-salt" 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 13v.01" /><path d="M10 16v.01" /><path d="M14 16v.01" /><path d="M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z" /><path d="M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671" /></svg>;
+}
+
+export default IconSalt; \ No newline at end of file
diff --git a/icons-react/icons-js/sausage.js b/icons-react/icons-js/sausage.js
new file mode 100644
index 00000000..1e462f7a
--- /dev/null
+++ b/icons-react/icons-js/sausage.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSausage({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sausage" 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.5 5.5a2.5 2.5 0 0 0 -2.5 2.5c0 7.18 5.82 13 13 13a2.5 2.5 0 1 0 0 -5a8 8 0 0 1 -8 -8a2.5 2.5 0 0 0 -2.5 -2.5z" /><path d="M5.195 5.519l-1.243 -1.989a1 1 0 0 1 .848 -1.53h1.392a1 1 0 0 1 .848 1.53l-1.245 1.99" /><path d="M18.482 18.225l1.989 -1.243a1 1 0 0 1 1.53 .848v1.392a1 1 0 0 1 -1.53 .848l-1.991 -1.245" /></svg>;
+}
+
+export default IconSausage; \ No newline at end of file
diff --git a/icons-react/icons-js/sort-ascending-letters.js b/icons-react/icons-js/sort-ascending-letters.js
new file mode 100644
index 00000000..b5d5cfe6
--- /dev/null
+++ b/icons-react/icons-js/sort-ascending-letters.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSortAscendingLetters({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sort-ascending-letters" 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 10v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4" /><path d="M19 21h-4l4 -7h-4" /><path d="M4 15l3 3l3 -3" /><path d="M7 6v12" /></svg>;
+}
+
+export default IconSortAscendingLetters; \ No newline at end of file
diff --git a/icons-react/icons-js/sort-ascending-numbers.js b/icons-react/icons-js/sort-ascending-numbers.js
new file mode 100644
index 00000000..88793b7a
--- /dev/null
+++ b/icons-react/icons-js/sort-ascending-numbers.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSortAscendingNumbers({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sort-ascending-numbers" 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 15l3 3l3 -3" /><path d="M7 6v12" /><path d="M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z" /><circle cx={17} cy={16} r={2} /><path d="M19 16v3a2 2 0 0 1 -2 2h-1.5" /></svg>;
+}
+
+export default IconSortAscendingNumbers; \ No newline at end of file
diff --git a/icons-react/icons-js/sort-descending-letters.js b/icons-react/icons-js/sort-descending-letters.js
new file mode 100644
index 00000000..8e6cee3c
--- /dev/null
+++ b/icons-react/icons-js/sort-descending-letters.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSortDescendingLetters({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sort-descending-letters" 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 21v-5c0 -1.38 .62 -2 2 -2s2 .62 2 2v5m0 -3h-4" /><path d="M19 10h-4l4 -7h-4" /><path d="M4 15l3 3l3 -3" /><path d="M7 6v12" /></svg>;
+}
+
+export default IconSortDescendingLetters; \ No newline at end of file
diff --git a/icons-react/icons-js/sort-descending-numbers.js b/icons-react/icons-js/sort-descending-numbers.js
new file mode 100644
index 00000000..d7248df0
--- /dev/null
+++ b/icons-react/icons-js/sort-descending-numbers.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSortDescendingNumbers({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sort-descending-numbers" 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 15l3 3l3 -3" /><path d="M7 6v12" /><path d="M17 14a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z" /><circle cx={17} cy={5} r={2} /><path d="M19 5v3a2 2 0 0 1 -2 2h-1.5" /></svg>;
+}
+
+export default IconSortDescendingNumbers; \ No newline at end of file
diff --git a/icons-react/icons-js/sunrise.js b/icons-react/icons-js/sunrise.js
new file mode 100644
index 00000000..981a9e7b
--- /dev/null
+++ b/icons-react/icons-js/sunrise.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSunrise({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-sunrise" 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 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0" /><line x1={3} y1={21} x2={21} y2={21} /><path d="M12 9v-6l3 3m-6 0l3 -3" /></svg>;
+}
+
+export default IconSunrise; \ No newline at end of file
diff --git a/icons-react/icons-js/sunset.js b/icons-react/icons-js/sunset.js
index 0c9cf19a..0e23d602 100644
--- a/icons-react/icons-js/sunset.js
+++ b/icons-react/icons-js/sunset.js
@@ -6,7 +6,7 @@ function IconSunset({
stroke = 2,
...props
}) {
- return <svg className="icon icon-tabler icon-tabler-sunset" 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 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0" /><line x1={3} y1={21} x2={21} y2={21} /><path d="M12 9v-6l3 3m-6 0l3 -3" /></svg>;
+ return <svg className="icon icon-tabler icon-tabler-sunset" 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 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0" /><line x1={3} y1={21} x2={21} y2={21} /><path d="M12 3v6l3 -3m-6 0l3 3" /></svg>;
}
export default IconSunset; \ No newline at end of file
diff --git a/icons-react/icons-js/vector-bezier.js b/icons-react/icons-js/vector-bezier.js
new file mode 100644
index 00000000..8ab91443
--- /dev/null
+++ b/icons-react/icons-js/vector-bezier.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconVectorBezier({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-vector-bezier" 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={3} y={14} width={4} height={4} rx={1} /><rect x={17} y={14} width={4} height={4} rx={1} /><rect x={10} y={6} width={4} height={4} rx={1} /><path d="M10 8.5a6 6 0 0 0 -5 5.5" /><path d="M14 8.5a6 6 0 0 1 5 5.5" /><line x1={10} y1={8} x2={4} y2={8} /><line x1={20} y1={8} x2={14} y2={8} /><circle cx={3} cy={8} r={1} /><circle cx={21} cy={8} r={1} /></svg>;
+}
+
+export default IconVectorBezier; \ No newline at end of file
diff --git a/icons-react/icons-js/vocabulary.js b/icons-react/icons-js/vocabulary.js
new file mode 100644
index 00000000..d199ae8a
--- /dev/null
+++ b/icons-react/icons-js/vocabulary.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconVocabulary({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-vocabulary" 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 19h-6a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1h6a2 2 0 0 1 2 2a2 2 0 0 1 2 -2h6a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-6a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2z" /><path d="M12 5v16" /><path d="M7 7h1" /><path d="M7 11h1" /><path d="M16 7h1" /><path d="M16 11h1" /><path d="M16 15h1" /></svg>;
+}
+
+export default IconVocabulary; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 4aec357c..c4fbaf0b 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -183,6 +183,7 @@ export const IconBorderRight: TablerIcon;
export const IconBorderStyle: TablerIcon;
export const IconBorderTop: TablerIcon;
export const IconBorderVertical: TablerIcon;
+export const IconBottle: TablerIcon;
export const IconBoxMargin: TablerIcon;
export const IconBoxModel: TablerIcon;
export const IconBoxMultiple0: TablerIcon;
@@ -236,6 +237,7 @@ export const IconBrandGravatar: TablerIcon;
export const IconBrandHipchat: TablerIcon;
export const IconBrandHtml5: TablerIcon;
export const IconBrandInstagram: TablerIcon;
+export const IconBrandJavascript: TablerIcon;
export const IconBrandKickstarter: TablerIcon;
export const IconBrandKotlin: TablerIcon;
export const IconBrandLinkedin: TablerIcon;
@@ -329,6 +331,7 @@ export const IconCameraPlus: TablerIcon;
export const IconCameraRotate: TablerIcon;
export const IconCameraSelfie: TablerIcon;
export const IconCamera: TablerIcon;
+export const IconCandy: TablerIcon;
export const IconCapture: TablerIcon;
export const IconCar: TablerIcon;
export const IconCaravan: TablerIcon;
@@ -427,6 +430,7 @@ export const IconCloud: TablerIcon;
export const IconCodeMinus: TablerIcon;
export const IconCodePlus: TablerIcon;
export const IconCode: TablerIcon;
+export const IconCoffee: TablerIcon;
export const IconCoin: TablerIcon;
export const IconColorPicker: TablerIcon;
export const IconColorSwatch: TablerIcon;
@@ -439,6 +443,7 @@ export const IconCompass: TablerIcon;
export const IconConfetti: TablerIcon;
export const IconContainer: TablerIcon;
export const IconContrast: TablerIcon;
+export const IconCookie: TablerIcon;
export const IconCopy: TablerIcon;
export const IconCopyleft: TablerIcon;
export const IconCopyright: TablerIcon;
@@ -744,6 +749,7 @@ export const IconLayoutSidebar: TablerIcon;
export const IconLayout: TablerIcon;
export const IconLeaf: TablerIcon;
export const IconLego: TablerIcon;
+export const IconLemon: TablerIcon;
export const IconLetterA: TablerIcon;
export const IconLetterB: TablerIcon;
export const IconLetterC: TablerIcon;
@@ -784,6 +790,7 @@ export const IconLineHeight: TablerIcon;
export const IconLine: TablerIcon;
export const IconLink: TablerIcon;
export const IconListCheck: TablerIcon;
+export const IconListNumbers: TablerIcon;
export const IconListSearch: TablerIcon;
export const IconList: TablerIcon;
export const IconLivePhoto: TablerIcon;
@@ -821,6 +828,7 @@ export const IconMathFunction: TablerIcon;
export const IconMathSymbols: TablerIcon;
export const IconMath: TablerIcon;
export const IconMaximize: TablerIcon;
+export const IconMeat: TablerIcon;
export const IconMedal: TablerIcon;
export const IconMedicalCross: TablerIcon;
export const IconMenu2: TablerIcon;
@@ -838,6 +846,7 @@ export const IconMessagesOff: TablerIcon;
export const IconMessages: TablerIcon;
export const IconMicrophoneOff: TablerIcon;
export const IconMicrophone: TablerIcon;
+export const IconMilk: TablerIcon;
export const IconMinimize: TablerIcon;
export const IconMinusVertical: TablerIcon;
export const IconMinus: TablerIcon;
@@ -862,6 +871,7 @@ export const IconMotorbike: TablerIcon;
export const IconMouse: TablerIcon;
export const IconMovie: TablerIcon;
export const IconMug: TablerIcon;
+export const IconMushroom: TablerIcon;
export const IconMusic: TablerIcon;
export const IconNewSection: TablerIcon;
export const IconNews: TablerIcon;
@@ -901,6 +911,7 @@ export const IconParking: TablerIcon;
export const IconPeace: TablerIcon;
export const IconPencil: TablerIcon;
export const IconPennant: TablerIcon;
+export const IconPepper: TablerIcon;
export const IconPercentage: TablerIcon;
export const IconPerspective: TablerIcon;
export const IconPhoneCall: TablerIcon;
@@ -1004,7 +1015,9 @@ export const IconRuler2: TablerIcon;
export const IconRuler: TablerIcon;
export const IconRun: TablerIcon;
export const IconSailboat: TablerIcon;
+export const IconSalt: TablerIcon;
export const IconSatellite: TablerIcon;
+export const IconSausage: TablerIcon;
export const IconScale: TablerIcon;
export const IconScan: TablerIcon;
export const IconSchool: TablerIcon;
@@ -1059,8 +1072,12 @@ export const IconSoccerField: TablerIcon;
export const IconSocial: TablerIcon;
export const IconSock: TablerIcon;
export const IconSortAscending2: TablerIcon;
+export const IconSortAscendingLetters: TablerIcon;
+export const IconSortAscendingNumbers: TablerIcon;
export const IconSortAscending: TablerIcon;
export const IconSortDescending2: TablerIcon;
+export const IconSortDescendingLetters: TablerIcon;
+export const IconSortDescendingNumbers: TablerIcon;
export const IconSortDescending: TablerIcon;
export const IconSpace: TablerIcon;
export const IconSpeakerphone: TablerIcon;
@@ -1114,8 +1131,8 @@ export const IconSubtask: TablerIcon;
export const IconSum: TablerIcon;
export const IconSunOff: TablerIcon;
export const IconSun: TablerIcon;
+export const IconSunrise: TablerIcon;
export const IconSunset: TablerIcon;
-export const IconSunshine: TablerIcon;
export const IconSuperscript: TablerIcon;
export const IconSwimming: TablerIcon;
export const IconSwitch2: TablerIcon;
@@ -1204,7 +1221,7 @@ export const IconUsers: TablerIcon;
export const IconVaccine: TablerIcon;
export const IconVariable: TablerIcon;
export const IconVectorBeizer2: TablerIcon;
-export const IconVectorBeizer: TablerIcon;
+export const IconVectorBezier: TablerIcon;
export const IconVectorTriangle: TablerIcon;
export const IconVector: TablerIcon;
export const IconVenus: TablerIcon;
@@ -1220,6 +1237,7 @@ export const IconViewportWide: TablerIcon;
export const IconVirusOff: TablerIcon;
export const IconVirusSearch: TablerIcon;
export const IconVirus: TablerIcon;
+export const IconVocabulary: TablerIcon;
export const IconVolume2: TablerIcon;
export const IconVolume3: TablerIcon;
export const IconVolume: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 8af2684f..45bd021e 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -177,6 +177,7 @@ export { default as IconBorderRight } from './icons-js/border-right.js';
export { default as IconBorderStyle } from './icons-js/border-style.js';
export { default as IconBorderTop } from './icons-js/border-top.js';
export { default as IconBorderVertical } from './icons-js/border-vertical.js';
+export { default as IconBottle } from './icons-js/bottle.js';
export { default as IconBoxMargin } from './icons-js/box-margin.js';
export { default as IconBoxModel } from './icons-js/box-model.js';
export { default as IconBoxMultiple0 } from './icons-js/box-multiple-0.js';
@@ -230,6 +231,7 @@ export { default as IconBrandGravatar } from './icons-js/brand-gravatar.js';
export { default as IconBrandHipchat } from './icons-js/brand-hipchat.js';
export { default as IconBrandHtml5 } from './icons-js/brand-html5.js';
export { default as IconBrandInstagram } from './icons-js/brand-instagram.js';
+export { default as IconBrandJavascript } from './icons-js/brand-javascript.js';
export { default as IconBrandKickstarter } from './icons-js/brand-kickstarter.js';
export { default as IconBrandKotlin } from './icons-js/brand-kotlin.js';
export { default as IconBrandLinkedin } from './icons-js/brand-linkedin.js';
@@ -323,6 +325,7 @@ export { default as IconCameraPlus } from './icons-js/camera-plus.js';
export { default as IconCameraRotate } from './icons-js/camera-rotate.js';
export { default as IconCameraSelfie } from './icons-js/camera-selfie.js';
export { default as IconCamera } from './icons-js/camera.js';
+export { default as IconCandy } from './icons-js/candy.js';
export { default as IconCapture } from './icons-js/capture.js';
export { default as IconCar } from './icons-js/car.js';
export { default as IconCaravan } from './icons-js/caravan.js';
@@ -421,6 +424,7 @@ export { default as IconCloud } from './icons-js/cloud.js';
export { default as IconCodeMinus } from './icons-js/code-minus.js';
export { default as IconCodePlus } from './icons-js/code-plus.js';
export { default as IconCode } from './icons-js/code.js';
+export { default as IconCoffee } from './icons-js/coffee.js';
export { default as IconCoin } from './icons-js/coin.js';
export { default as IconColorPicker } from './icons-js/color-picker.js';
export { default as IconColorSwatch } from './icons-js/color-swatch.js';
@@ -433,6 +437,7 @@ export { default as IconCompass } from './icons-js/compass.js';
export { default as IconConfetti } from './icons-js/confetti.js';
export { default as IconContainer } from './icons-js/container.js';
export { default as IconContrast } from './icons-js/contrast.js';
+export { default as IconCookie } from './icons-js/cookie.js';
export { default as IconCopy } from './icons-js/copy.js';
export { default as IconCopyleft } from './icons-js/copyleft.js';
export { default as IconCopyright } from './icons-js/copyright.js';
@@ -738,6 +743,7 @@ export { default as IconLayoutSidebar } from './icons-js/layout-sidebar.js';
export { default as IconLayout } from './icons-js/layout.js';
export { default as IconLeaf } from './icons-js/leaf.js';
export { default as IconLego } from './icons-js/lego.js';
+export { default as IconLemon } from './icons-js/lemon.js';
export { default as IconLetterA } from './icons-js/letter-a.js';
export { default as IconLetterB } from './icons-js/letter-b.js';
export { default as IconLetterC } from './icons-js/letter-c.js';
@@ -778,6 +784,7 @@ export { default as IconLineHeight } from './icons-js/line-height.js';
export { default as IconLine } from './icons-js/line.js';
export { default as IconLink } from './icons-js/link.js';
export { default as IconListCheck } from './icons-js/list-check.js';
+export { default as IconListNumbers } from './icons-js/list-numbers.js';
export { default as IconListSearch } from './icons-js/list-search.js';
export { default as IconList } from './icons-js/list.js';
export { default as IconLivePhoto } from './icons-js/live-photo.js';
@@ -815,6 +822,7 @@ export { default as IconMathFunction } from './icons-js/math-function.js';
export { default as IconMathSymbols } from './icons-js/math-symbols.js';
export { default as IconMath } from './icons-js/math.js';
export { default as IconMaximize } from './icons-js/maximize.js';
+export { default as IconMeat } from './icons-js/meat.js';
export { default as IconMedal } from './icons-js/medal.js';
export { default as IconMedicalCross } from './icons-js/medical-cross.js';
export { default as IconMenu2 } from './icons-js/menu-2.js';
@@ -832,6 +840,7 @@ export { default as IconMessagesOff } from './icons-js/messages-off.js';
export { default as IconMessages } from './icons-js/messages.js';
export { default as IconMicrophoneOff } from './icons-js/microphone-off.js';
export { default as IconMicrophone } from './icons-js/microphone.js';
+export { default as IconMilk } from './icons-js/milk.js';
export { default as IconMinimize } from './icons-js/minimize.js';
export { default as IconMinusVertical } from './icons-js/minus-vertical.js';
export { default as IconMinus } from './icons-js/minus.js';
@@ -856,6 +865,7 @@ export { default as IconMotorbike } from './icons-js/motorbike.js';
export { default as IconMouse } from './icons-js/mouse.js';
export { default as IconMovie } from './icons-js/movie.js';
export { default as IconMug } from './icons-js/mug.js';
+export { default as IconMushroom } from './icons-js/mushroom.js';
export { default as IconMusic } from './icons-js/music.js';
export { default as IconNewSection } from './icons-js/new-section.js';
export { default as IconNews } from './icons-js/news.js';
@@ -895,6 +905,7 @@ export { default as IconParking } from './icons-js/parking.js';
export { default as IconPeace } from './icons-js/peace.js';
export { default as IconPencil } from './icons-js/pencil.js';
export { default as IconPennant } from './icons-js/pennant.js';
+export { default as IconPepper } from './icons-js/pepper.js';
export { default as IconPercentage } from './icons-js/percentage.js';
export { default as IconPerspective } from './icons-js/perspective.js';
export { default as IconPhoneCall } from './icons-js/phone-call.js';
@@ -998,7 +1009,9 @@ export { default as IconRuler2 } from './icons-js/ruler-2.js';
export { default as IconRuler } from './icons-js/ruler.js';
export { default as IconRun } from './icons-js/run.js';
export { default as IconSailboat } from './icons-js/sailboat.js';
+export { default as IconSalt } from './icons-js/salt.js';
export { default as IconSatellite } from './icons-js/satellite.js';
+export { default as IconSausage } from './icons-js/sausage.js';
export { default as IconScale } from './icons-js/scale.js';
export { default as IconScan } from './icons-js/scan.js';
export { default as IconSchool } from './icons-js/school.js';
@@ -1053,8 +1066,12 @@ export { default as IconSoccerField } from './icons-js/soccer-field.js';
export { default as IconSocial } from './icons-js/social.js';
export { default as IconSock } from './icons-js/sock.js';
export { default as IconSortAscending2 } from './icons-js/sort-ascending-2.js';
+export { default as IconSortAscendingLetters } from './icons-js/sort-ascending-letters.js';
+export { default as IconSortAscendingNumbers } from './icons-js/sort-ascending-numbers.js';
export { default as IconSortAscending } from './icons-js/sort-ascending.js';
export { default as IconSortDescending2 } from './icons-js/sort-descending-2.js';
+export { default as IconSortDescendingLetters } from './icons-js/sort-descending-letters.js';
+export { default as IconSortDescendingNumbers } from './icons-js/sort-descending-numbers.js';
export { default as IconSortDescending } from './icons-js/sort-descending.js';
export { default as IconSpace } from './icons-js/space.js';
export { default as IconSpeakerphone } from './icons-js/speakerphone.js';
@@ -1108,8 +1125,8 @@ export { default as IconSubtask } from './icons-js/subtask.js';
export { default as IconSum } from './icons-js/sum.js';
export { default as IconSunOff } from './icons-js/sun-off.js';
export { default as IconSun } from './icons-js/sun.js';
+export { default as IconSunrise } from './icons-js/sunrise.js';
export { default as IconSunset } from './icons-js/sunset.js';
-export { default as IconSunshine } from './icons-js/sunshine.js';
export { default as IconSuperscript } from './icons-js/superscript.js';
export { default as IconSwimming } from './icons-js/swimming.js';
export { default as IconSwitch2 } from './icons-js/switch-2.js';
@@ -1198,7 +1215,7 @@ export { default as IconUsers } from './icons-js/users.js';
export { default as IconVaccine } from './icons-js/vaccine.js';
export { default as IconVariable } from './icons-js/variable.js';
export { default as IconVectorBeizer2 } from './icons-js/vector-beizer-2.js';
-export { default as IconVectorBeizer } from './icons-js/vector-beizer.js';
+export { default as IconVectorBezier } from './icons-js/vector-bezier.js';
export { default as IconVectorTriangle } from './icons-js/vector-triangle.js';
export { default as IconVector } from './icons-js/vector.js';
export { default as IconVenus } from './icons-js/venus.js';
@@ -1214,6 +1231,7 @@ export { default as IconViewportWide } from './icons-js/viewport-wide.js';
export { default as IconVirusOff } from './icons-js/virus-off.js';
export { default as IconVirusSearch } from './icons-js/virus-search.js';
export { default as IconVirus } from './icons-js/virus.js';
+export { default as IconVocabulary } from './icons-js/vocabulary.js';
export { default as IconVolume2 } from './icons-js/volume-2.js';
export { default as IconVolume3 } from './icons-js/volume-3.js';
export { default as IconVolume } from './icons-js/volume.js';