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/ad-2.js12
-rw-r--r--icons-react/icons-js/affiliate.js2
-rw-r--r--icons-react/icons-js/angle.js12
-rw-r--r--icons-react/icons-js/apple.js12
-rw-r--r--icons-react/icons-js/border-style-2.js12
-rw-r--r--icons-react/icons-js/bottle.js12
-rw-r--r--icons-react/icons-js/box-model-2.js12
-rw-r--r--icons-react/icons-js/brand-javascript.js12
-rw-r--r--icons-react/icons-js/brand-vercel.js12
-rw-r--r--icons-react/icons-js/candy.js12
-rw-r--r--icons-react/icons-js/car-crane.js12
-rw-r--r--icons-react/icons-js/cheese.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/crane.js12
-rw-r--r--icons-react/icons-js/cup.js12
-rw-r--r--icons-react/icons-js/dog-bowl.js12
-rw-r--r--icons-react/icons-js/fence.js12
-rw-r--r--icons-react/icons-js/fish.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/microphone-2.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/radio.js12
-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/soup.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/transfer-in.js12
-rw-r--r--icons-react/icons-js/transfer-out.js12
-rw-r--r--icons-react/icons-js/vector-bezier.js12
-rw-r--r--icons-react/icons-js/vocabulary.js12
41 files changed, 459 insertions, 3 deletions
diff --git a/icons-react/icons-js/ad-2.js b/icons-react/icons-js/ad-2.js
new file mode 100644
index 00000000..a95a6d2f
--- /dev/null
+++ b/icons-react/icons-js/ad-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconAd2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-ad-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="M11.933 5h-6.933v16h13v-8" /><path d="M14 17h-5" /><path d="M9 13h5v-4h-5z" /><path d="M15 5v-2" /><path d="M18 6l2 -2" /><path d="M19 9h2" /></svg>;
+}
+
+export default IconAd2; \ No newline at end of file
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/angle.js b/icons-react/icons-js/angle.js
new file mode 100644
index 00000000..e6e087ad
--- /dev/null
+++ b/icons-react/icons-js/angle.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconAngle({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-angle" 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 19h-18l9 -15" /><path d="M20.615 15.171h.015" /><path d="M19.515 11.771h.015" /><path d="M17.715 8.671h.015" /><path d="M15.415 5.971h.015" /></svg>;
+}
+
+export default IconAngle; \ No newline at end of file
diff --git a/icons-react/icons-js/apple.js b/icons-react/icons-js/apple.js
new file mode 100644
index 00000000..16901826
--- /dev/null
+++ b/icons-react/icons-js/apple.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconApple({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-apple" 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 cx={12} cy={14} r={7} /><path d="M12 11v-6a2 2 0 0 1 2 -2h2v1a2 2 0 0 1 -2 2h-2" /><path d="M10 10.5c1.333 .667 2.667 .667 4 0" /></svg>;
+}
+
+export default IconApple; \ No newline at end of file
diff --git a/icons-react/icons-js/border-style-2.js b/icons-react/icons-js/border-style-2.js
new file mode 100644
index 00000000..76dac177
--- /dev/null
+++ b/icons-react/icons-js/border-style-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBorderStyle2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-border-style-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="M4 18v.01" /><path d="M8 18v.01" /><path d="M12 18v.01" /><path d="M16 18v.01" /><path d="M20 18v.01" /><path d="M18 12h2" /><path d="M11 12h2" /><path d="M4 12h2" /><path d="M4 6h16" /></svg>;
+}
+
+export default IconBorderStyle2; \ 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/box-model-2.js b/icons-react/icons-js/box-model-2.js
new file mode 100644
index 00000000..1ecd54c7
--- /dev/null
+++ b/icons-react/icons-js/box-model-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBoxModel2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-box-model-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="M8 8h8v8h-8z" /><rect x={4} y={4} width={16} height={16} rx={2} /></svg>;
+}
+
+export default IconBoxModel2; \ 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/brand-vercel.js b/icons-react/icons-js/brand-vercel.js
new file mode 100644
index 00000000..74b96f83
--- /dev/null
+++ b/icons-react/icons-js/brand-vercel.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandVercel({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-brand-vercel" 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 19h18l-9 -15z" /></svg>;
+}
+
+export default IconBrandVercel; \ 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/car-crane.js b/icons-react/icons-js/car-crane.js
new file mode 100644
index 00000000..71db0035
--- /dev/null
+++ b/icons-react/icons-js/car-crane.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCarCrane({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-car-crane" 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 cx={5} cy={17} r={2} /><circle cx={17} cy={17} r={2} /><path d="M7 18h8m4 0h2v-6a5 5 0 0 0 -5 -5h-1l1.5 5h4.5" /><path d="M12 18v-11h3" /><path d="M3 17v-5h9" /><path d="M4 12v-6l18 -3v2" /><path d="M8 12v-4l-4 -2" /></svg>;
+}
+
+export default IconCarCrane; \ No newline at end of file
diff --git a/icons-react/icons-js/cheese.js b/icons-react/icons-js/cheese.js
new file mode 100644
index 00000000..94cc54d8
--- /dev/null
+++ b/icons-react/icons-js/cheese.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCheese({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-cheese" 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.519 20.008l16.481 -.008v-3.5a2 2 0 1 1 0 -4v-3.5h-16.722" /><path d="M21 9l-9.385 -4.992c-2.512 .12 -4.758 1.42 -6.327 3.425c-1.423 1.82 -2.288 4.221 -2.288 6.854c0 2.117 .56 4.085 1.519 5.721" /><path d="M15 13v.01" /><path d="M8 13v.01" /><path d="M11 16v.01" /></svg>;
+}
+
+export default IconCheese; \ 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/crane.js b/icons-react/icons-js/crane.js
new file mode 100644
index 00000000..eccdd543
--- /dev/null
+++ b/icons-react/icons-js/crane.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCrane({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-crane" 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="M6 21h6" /><path d="M9 21v-18l-6 6h18" /><path d="M9 3l10 6" /><path d="M17 9v4a2 2 0 1 1 -2 2" /></svg>;
+}
+
+export default IconCrane; \ No newline at end of file
diff --git a/icons-react/icons-js/cup.js b/icons-react/icons-js/cup.js
new file mode 100644
index 00000000..d420b66a
--- /dev/null
+++ b/icons-react/icons-js/cup.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCup({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-cup" 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 11h14v-3h-14z" /><path d="M17.5 11l-1.5 10h-8l-1.5 -10" /><path d="M6 8v-1a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v1" /><path d="M15 5v-2" /></svg>;
+}
+
+export default IconCup; \ No newline at end of file
diff --git a/icons-react/icons-js/dog-bowl.js b/icons-react/icons-js/dog-bowl.js
new file mode 100644
index 00000000..aab95c2f
--- /dev/null
+++ b/icons-react/icons-js/dog-bowl.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconDogBowl({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-dog-bowl" 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 15l5.586 -5.585a2 2 0 1 1 3.414 -1.415a2 2 0 1 1 -1.413 3.414l-3.587 3.586" /><path d="M12 13l-3.586 -3.585a2 2 0 1 0 -3.414 -1.415a2 2 0 1 0 1.413 3.414l3.587 3.586" /><path d="M3 20h18c-.175 -1.671 -.046 -3.345 -2 -5h-14c-1.333 1 -2 2.667 -2 5z" /></svg>;
+}
+
+export default IconDogBowl; \ No newline at end of file
diff --git a/icons-react/icons-js/fence.js b/icons-react/icons-js/fence.js
new file mode 100644
index 00000000..9b1bb9bf
--- /dev/null
+++ b/icons-react/icons-js/fence.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFence({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-fence" 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 12v4h16v-4z" /><path d="M6 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6" /><path d="M14 16v4h4v-4m0 -4v-6l-2 -2l-2 2v6" /></svg>;
+}
+
+export default IconFence; \ No newline at end of file
diff --git a/icons-react/icons-js/fish.js b/icons-react/icons-js/fish.js
new file mode 100644
index 00000000..c85476ab
--- /dev/null
+++ b/icons-react/icons-js/fish.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconFish({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-fish" 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.56c0 1.747 .64 3.345 1.699 4.571" /><path d="M2 9.504c7.715 8.647 14.75 10.265 20 2.498c-5.25 -7.761 -12.285 -6.142 -20 2.504" /><path d="M18 11v.01" /><path d="M11.5 10.5c-.667 1 -.667 2 0 3" /></svg>;
+}
+
+export default IconFish; \ 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/microphone-2.js b/icons-react/icons-js/microphone-2.js
new file mode 100644
index 00000000..e31597fe
--- /dev/null
+++ b/icons-react/icons-js/microphone-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMicrophone2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-microphone-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="M15.002 12.9a5 5 0 1 0 -3.902 -3.9" /><path d="M15.002 12.9l-3.902 -3.899l-7.513 8.584a2 2 0 1 0 2.827 2.83l8.588 -7.515z" /></svg>;
+}
+
+export default IconMicrophone2; \ 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/radio.js b/icons-react/icons-js/radio.js
new file mode 100644
index 00000000..a03c6caf
--- /dev/null
+++ b/icons-react/icons-js/radio.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconRadio({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-radio" 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 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5" /><path d="M4 12h16" /><path d="M7 12v-2" /><path d="M17 16v.01" /><path d="M13 16v.01" /></svg>;
+}
+
+export default IconRadio; \ 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/soup.js b/icons-react/icons-js/soup.js
new file mode 100644
index 00000000..b443abbe
--- /dev/null
+++ b/icons-react/icons-js/soup.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconSoup({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-soup" 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 19h18" /><path d="M3 11h18a8 8 0 0 1 -8 8h-2a8 8 0 0 1 -8 -8z" /><path d="M9 8v-3" /><path d="M12 5v3" /><path d="M15 5v3" /></svg>;
+}
+
+export default IconSoup; \ 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/transfer-in.js b/icons-react/icons-js/transfer-in.js
new file mode 100644
index 00000000..b96f1d91
--- /dev/null
+++ b/icons-react/icons-js/transfer-in.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTransferIn({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-transfer-in" 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 18v3h16v-14l-8 -4l-8 4v3" /><path d="M4 14h9" /><path d="M10 11l3 3l-3 3" /></svg>;
+}
+
+export default IconTransferIn; \ No newline at end of file
diff --git a/icons-react/icons-js/transfer-out.js b/icons-react/icons-js/transfer-out.js
new file mode 100644
index 00000000..ebd7feb8
--- /dev/null
+++ b/icons-react/icons-js/transfer-out.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTransferOut({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg className="icon icon-tabler icon-tabler-transfer-out" 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 19v2h16v-14l-8 -4l-8 4v2" /><path d="M13 14h-9" /><path d="M7 11l-3 3l3 3" /></svg>;
+}
+
+export default IconTransferOut; \ 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