diff options
Diffstat (limited to 'icons-react')
43 files changed, 535 insertions, 7 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 diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 4aec357c..04987582 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -11,6 +11,7 @@ export const IconAccessPointOff: TablerIcon; export const IconAccessPoint: TablerIcon; export const IconAccessible: TablerIcon; export const IconActivity: TablerIcon; +export const IconAd2: TablerIcon; export const IconAd: TablerIcon; export const IconAdjustmentsAlt: TablerIcon; export const IconAdjustmentsHorizontal: TablerIcon; @@ -28,12 +29,14 @@ export const IconAlignLeft: TablerIcon; export const IconAlignRight: TablerIcon; export const IconAmbulance: TablerIcon; export const IconAnchor: TablerIcon; +export const IconAngle: TablerIcon; export const IconAntennaBars1: TablerIcon; export const IconAntennaBars2: TablerIcon; export const IconAntennaBars3: TablerIcon; export const IconAntennaBars4: TablerIcon; export const IconAntennaBars5: TablerIcon; export const IconAperture: TablerIcon; +export const IconApple: TablerIcon; export const IconApps: TablerIcon; export const IconArchive: TablerIcon; export const IconArrowBackUp: TablerIcon; @@ -180,10 +183,13 @@ export const IconBorderNone: TablerIcon; export const IconBorderOuter: TablerIcon; export const IconBorderRadius: TablerIcon; export const IconBorderRight: TablerIcon; +export const IconBorderStyle2: TablerIcon; export const IconBorderStyle: TablerIcon; export const IconBorderTop: TablerIcon; export const IconBorderVertical: TablerIcon; +export const IconBottle: TablerIcon; export const IconBoxMargin: TablerIcon; +export const IconBoxModel2: TablerIcon; export const IconBoxModel: TablerIcon; export const IconBoxMultiple0: TablerIcon; export const IconBoxMultiple1: TablerIcon; @@ -236,6 +242,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; @@ -274,6 +281,7 @@ export const IconBrandTumblr: TablerIcon; export const IconBrandTwitch: TablerIcon; export const IconBrandTwitter: TablerIcon; export const IconBrandUnsplash: TablerIcon; +export const IconBrandVercel: TablerIcon; export const IconBrandVimeo: TablerIcon; export const IconBrandVk: TablerIcon; export const IconBrandWhatsapp: TablerIcon; @@ -329,7 +337,9 @@ 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 IconCarCrane: TablerIcon; export const IconCar: TablerIcon; export const IconCaravan: TablerIcon; export const IconCardboards: TablerIcon; @@ -369,6 +379,7 @@ export const IconChartRadar: TablerIcon; export const IconCheck: TablerIcon; export const IconCheckbox: TablerIcon; export const IconChecks: TablerIcon; +export const IconCheese: TablerIcon; export const IconChevronDownLeft: TablerIcon; export const IconChevronDownRight: TablerIcon; export const IconChevronDown: TablerIcon; @@ -427,6 +438,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 +451,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; @@ -458,12 +471,14 @@ export const IconCornerUpLeftDouble: TablerIcon; export const IconCornerUpLeft: TablerIcon; export const IconCornerUpRightDouble: TablerIcon; export const IconCornerUpRight: TablerIcon; +export const IconCrane: TablerIcon; export const IconCreditCardOff: TablerIcon; export const IconCreditCard: TablerIcon; export const IconCrop: TablerIcon; export const IconCrosshair: TablerIcon; export const IconCrownOff: TablerIcon; export const IconCrown: TablerIcon; +export const IconCup: TablerIcon; export const IconCurlyLoop: TablerIcon; export const IconCurrencyBahraini: TablerIcon; export const IconCurrencyBath: TablerIcon; @@ -543,6 +558,7 @@ export const IconDiscount2: TablerIcon; export const IconDiscount: TablerIcon; export const IconDivide: TablerIcon; export const IconDna: TablerIcon; +export const IconDogBowl: TablerIcon; export const IconDotsCircleHorizontal: TablerIcon; export const IconDotsDiagonal2: TablerIcon; export const IconDotsDiagonal: TablerIcon; @@ -579,6 +595,7 @@ export const IconEyeglass: TablerIcon; export const IconFaceId: TablerIcon; export const IconFall: TablerIcon; export const IconFeather: TablerIcon; +export const IconFence: TablerIcon; export const IconFileAlert: TablerIcon; export const IconFileAnalytics: TablerIcon; export const IconFileCertificate: TablerIcon; @@ -614,6 +631,7 @@ export const IconFilterOff: TablerIcon; export const IconFilter: TablerIcon; export const IconFingerprint: TablerIcon; export const IconFiretruck: TablerIcon; +export const IconFish: TablerIcon; export const IconFlag2: TablerIcon; export const IconFlag3: TablerIcon; export const IconFlag: TablerIcon; @@ -744,6 +762,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 +803,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 +841,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; @@ -836,8 +857,10 @@ export const IconMessageReport: TablerIcon; export const IconMessage: TablerIcon; export const IconMessagesOff: TablerIcon; export const IconMessages: TablerIcon; +export const IconMicrophone2: 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 +885,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 +925,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; @@ -957,6 +982,7 @@ export const IconPuzzle: TablerIcon; export const IconPyramid: TablerIcon; export const IconQrcode: TablerIcon; export const IconQuestionMark: TablerIcon; +export const IconRadio: TablerIcon; export const IconRadioactive: TablerIcon; export const IconRadiusBottomLeft: TablerIcon; export const IconRadiusBottomRight: TablerIcon; @@ -1004,7 +1030,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,9 +1087,14 @@ 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 IconSoup: TablerIcon; export const IconSpace: TablerIcon; export const IconSpeakerphone: TablerIcon; export const IconSpeedboat: TablerIcon; @@ -1114,8 +1147,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; @@ -1168,6 +1201,8 @@ export const IconTrademark: TablerIcon; export const IconTrafficCone: TablerIcon; export const IconTrafficLights: TablerIcon; export const IconTrain: TablerIcon; +export const IconTransferIn: TablerIcon; +export const IconTransferOut: TablerIcon; export const IconTrashOff: TablerIcon; export const IconTrash: TablerIcon; export const IconTree: TablerIcon; @@ -1204,7 +1239,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 +1255,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..bebf5699 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -5,6 +5,7 @@ export { default as IconAccessPointOff } from './icons-js/access-point-off.js'; export { default as IconAccessPoint } from './icons-js/access-point.js'; export { default as IconAccessible } from './icons-js/accessible.js'; export { default as IconActivity } from './icons-js/activity.js'; +export { default as IconAd2 } from './icons-js/ad-2.js'; export { default as IconAd } from './icons-js/ad.js'; export { default as IconAdjustmentsAlt } from './icons-js/adjustments-alt.js'; export { default as IconAdjustmentsHorizontal } from './icons-js/adjustments-horizontal.js'; @@ -22,12 +23,14 @@ export { default as IconAlignLeft } from './icons-js/align-left.js'; export { default as IconAlignRight } from './icons-js/align-right.js'; export { default as IconAmbulance } from './icons-js/ambulance.js'; export { default as IconAnchor } from './icons-js/anchor.js'; +export { default as IconAngle } from './icons-js/angle.js'; export { default as IconAntennaBars1 } from './icons-js/antenna-bars-1.js'; export { default as IconAntennaBars2 } from './icons-js/antenna-bars-2.js'; export { default as IconAntennaBars3 } from './icons-js/antenna-bars-3.js'; export { default as IconAntennaBars4 } from './icons-js/antenna-bars-4.js'; export { default as IconAntennaBars5 } from './icons-js/antenna-bars-5.js'; export { default as IconAperture } from './icons-js/aperture.js'; +export { default as IconApple } from './icons-js/apple.js'; export { default as IconApps } from './icons-js/apps.js'; export { default as IconArchive } from './icons-js/archive.js'; export { default as IconArrowBackUp } from './icons-js/arrow-back-up.js'; @@ -174,10 +177,13 @@ export { default as IconBorderNone } from './icons-js/border-none.js'; export { default as IconBorderOuter } from './icons-js/border-outer.js'; export { default as IconBorderRadius } from './icons-js/border-radius.js'; export { default as IconBorderRight } from './icons-js/border-right.js'; +export { default as IconBorderStyle2 } from './icons-js/border-style-2.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 IconBoxModel2 } from './icons-js/box-model-2.js'; export { default as IconBoxModel } from './icons-js/box-model.js'; export { default as IconBoxMultiple0 } from './icons-js/box-multiple-0.js'; export { default as IconBoxMultiple1 } from './icons-js/box-multiple-1.js'; @@ -230,6 +236,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'; @@ -268,6 +275,7 @@ export { default as IconBrandTumblr } from './icons-js/brand-tumblr.js'; export { default as IconBrandTwitch } from './icons-js/brand-twitch.js'; export { default as IconBrandTwitter } from './icons-js/brand-twitter.js'; export { default as IconBrandUnsplash } from './icons-js/brand-unsplash.js'; +export { default as IconBrandVercel } from './icons-js/brand-vercel.js'; export { default as IconBrandVimeo } from './icons-js/brand-vimeo.js'; export { default as IconBrandVk } from './icons-js/brand-vk.js'; export { default as IconBrandWhatsapp } from './icons-js/brand-whatsapp.js'; @@ -323,7 +331,9 @@ 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 IconCarCrane } from './icons-js/car-crane.js'; export { default as IconCar } from './icons-js/car.js'; export { default as IconCaravan } from './icons-js/caravan.js'; export { default as IconCardboards } from './icons-js/cardboards.js'; @@ -363,6 +373,7 @@ export { default as IconChartRadar } from './icons-js/chart-radar.js'; export { default as IconCheck } from './icons-js/check.js'; export { default as IconCheckbox } from './icons-js/checkbox.js'; export { default as IconChecks } from './icons-js/checks.js'; +export { default as IconCheese } from './icons-js/cheese.js'; export { default as IconChevronDownLeft } from './icons-js/chevron-down-left.js'; export { default as IconChevronDownRight } from './icons-js/chevron-down-right.js'; export { default as IconChevronDown } from './icons-js/chevron-down.js'; @@ -421,6 +432,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 +445,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'; @@ -452,12 +465,14 @@ export { default as IconCornerUpLeftDouble } from './icons-js/corner-up-left-dou export { default as IconCornerUpLeft } from './icons-js/corner-up-left.js'; export { default as IconCornerUpRightDouble } from './icons-js/corner-up-right-double.js'; export { default as IconCornerUpRight } from './icons-js/corner-up-right.js'; +export { default as IconCrane } from './icons-js/crane.js'; export { default as IconCreditCardOff } from './icons-js/credit-card-off.js'; export { default as IconCreditCard } from './icons-js/credit-card.js'; export { default as IconCrop } from './icons-js/crop.js'; export { default as IconCrosshair } from './icons-js/crosshair.js'; export { default as IconCrownOff } from './icons-js/crown-off.js'; export { default as IconCrown } from './icons-js/crown.js'; +export { default as IconCup } from './icons-js/cup.js'; export { default as IconCurlyLoop } from './icons-js/curly-loop.js'; export { default as IconCurrencyBahraini } from './icons-js/currency-bahraini.js'; export { default as IconCurrencyBath } from './icons-js/currency-bath.js'; @@ -537,6 +552,7 @@ export { default as IconDiscount2 } from './icons-js/discount-2.js'; export { default as IconDiscount } from './icons-js/discount.js'; export { default as IconDivide } from './icons-js/divide.js'; export { default as IconDna } from './icons-js/dna.js'; +export { default as IconDogBowl } from './icons-js/dog-bowl.js'; export { default as IconDotsCircleHorizontal } from './icons-js/dots-circle-horizontal.js'; export { default as IconDotsDiagonal2 } from './icons-js/dots-diagonal-2.js'; export { default as IconDotsDiagonal } from './icons-js/dots-diagonal.js'; @@ -573,6 +589,7 @@ export { default as IconEyeglass } from './icons-js/eyeglass.js'; export { default as IconFaceId } from './icons-js/face-id.js'; export { default as IconFall } from './icons-js/fall.js'; export { default as IconFeather } from './icons-js/feather.js'; +export { default as IconFence } from './icons-js/fence.js'; export { default as IconFileAlert } from './icons-js/file-alert.js'; export { default as IconFileAnalytics } from './icons-js/file-analytics.js'; export { default as IconFileCertificate } from './icons-js/file-certificate.js'; @@ -608,6 +625,7 @@ export { default as IconFilterOff } from './icons-js/filter-off.js'; export { default as IconFilter } from './icons-js/filter.js'; export { default as IconFingerprint } from './icons-js/fingerprint.js'; export { default as IconFiretruck } from './icons-js/firetruck.js'; +export { default as IconFish } from './icons-js/fish.js'; export { default as IconFlag2 } from './icons-js/flag-2.js'; export { default as IconFlag3 } from './icons-js/flag-3.js'; export { default as IconFlag } from './icons-js/flag.js'; @@ -738,6 +756,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 +797,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 +835,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'; @@ -830,8 +851,10 @@ export { default as IconMessageReport } from './icons-js/message-report.js'; export { default as IconMessage } from './icons-js/message.js'; export { default as IconMessagesOff } from './icons-js/messages-off.js'; export { default as IconMessages } from './icons-js/messages.js'; +export { default as IconMicrophone2 } from './icons-js/microphone-2.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 +879,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 +919,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'; @@ -951,6 +976,7 @@ export { default as IconPuzzle } from './icons-js/puzzle.js'; export { default as IconPyramid } from './icons-js/pyramid.js'; export { default as IconQrcode } from './icons-js/qrcode.js'; export { default as IconQuestionMark } from './icons-js/question-mark.js'; +export { default as IconRadio } from './icons-js/radio.js'; export { default as IconRadioactive } from './icons-js/radioactive.js'; export { default as IconRadiusBottomLeft } from './icons-js/radius-bottom-left.js'; export { default as IconRadiusBottomRight } from './icons-js/radius-bottom-right.js'; @@ -998,7 +1024,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,9 +1081,14 @@ 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 IconSoup } from './icons-js/soup.js'; export { default as IconSpace } from './icons-js/space.js'; export { default as IconSpeakerphone } from './icons-js/speakerphone.js'; export { default as IconSpeedboat } from './icons-js/speedboat.js'; @@ -1108,8 +1141,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'; @@ -1162,6 +1195,8 @@ export { default as IconTrademark } from './icons-js/trademark.js'; export { default as IconTrafficCone } from './icons-js/traffic-cone.js'; export { default as IconTrafficLights } from './icons-js/traffic-lights.js'; export { default as IconTrain } from './icons-js/train.js'; +export { default as IconTransferIn } from './icons-js/transfer-in.js'; +export { default as IconTransferOut } from './icons-js/transfer-out.js'; export { default as IconTrashOff } from './icons-js/trash-off.js'; export { default as IconTrash } from './icons-js/trash.js'; export { default as IconTree } from './icons-js/tree.js'; @@ -1198,7 +1233,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 +1249,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'; |