diff options
Diffstat (limited to 'icons-react')
-rw-r--r-- | icons-react/icons-js/arrow-move-down.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/arrow-move-left.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/arrow-move-right.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/arrow-move-up.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/coin-bitcoin.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/coin-euro.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/coin-pound.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/coin-rupee.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/coin-yen.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/coin-yuan.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/coin.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/location-broken.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-look-left.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-look-right.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-sing.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/navigation.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/packages.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/tower-off.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/tower.js | 12 | ||||
-rw-r--r-- | icons-react/index.d.ts | 18 | ||||
-rw-r--r-- | icons-react/index.js | 18 |
21 files changed, 253 insertions, 1 deletions
diff --git a/icons-react/icons-js/arrow-move-down.js b/icons-react/icons-js/arrow-move-down.js new file mode 100644 index 00000000..6d884c53 --- /dev/null +++ b/icons-react/icons-js/arrow-move-down.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveDown({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-move-down" 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 11v10" /><path d="M9 18l3 3l3 -3" /><circle cx={12} cy={5} r={2} /></svg>; +} + +export default IconArrowMoveDown;
\ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-left.js b/icons-react/icons-js/arrow-move-left.js new file mode 100644 index 00000000..c69ed964 --- /dev/null +++ b/icons-react/icons-js/arrow-move-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-move-left" 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 12h-10" /><path d="M6 15l-3 -3l3 -3" /><path d="M17 12a2 2 0 1 1 4 0a2 2 0 0 1 -4 0z" /></svg>; +} + +export default IconArrowMoveLeft;
\ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-right.js b/icons-react/icons-js/arrow-move-right.js new file mode 100644 index 00000000..e7a7f3e2 --- /dev/null +++ b/icons-react/icons-js/arrow-move-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-move-right" 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 12h10" /><path d="M18 9l3 3l-3 3" /><path d="M7 12a2 2 0 1 1 -4 0a2 2 0 0 1 4 0z" /></svg>; +} + +export default IconArrowMoveRight;
\ No newline at end of file diff --git a/icons-react/icons-js/arrow-move-up.js b/icons-react/icons-js/arrow-move-up.js new file mode 100644 index 00000000..0a37cb0a --- /dev/null +++ b/icons-react/icons-js/arrow-move-up.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowMoveUp({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrow-move-up" 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-10" /><path d="M9 6l3 -3l3 3" /><path d="M12 17a2 2 0 1 1 0 4a2 2 0 0 1 0 -4z" /></svg>; +} + +export default IconArrowMoveUp;
\ No newline at end of file diff --git a/icons-react/icons-js/coin-bitcoin.js b/icons-react/icons-js/coin-bitcoin.js new file mode 100644 index 00000000..09e8f82e --- /dev/null +++ b/icons-react/icons-js/coin-bitcoin.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinBitcoin({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin-bitcoin" 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={12} r={9} /><path d="M9 8h4.09c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2c1.055 0 1.91 .895 1.91 2s-.855 2 -1.91 2h-4.09" /><path d="M10 12h4" /><path d="M10 7v10v-9" /><path d="M13 7v1" /><path d="M13 16v1" /></svg>; +} + +export default IconCoinBitcoin;
\ No newline at end of file diff --git a/icons-react/icons-js/coin-euro.js b/icons-react/icons-js/coin-euro.js new file mode 100644 index 00000000..186f8cfa --- /dev/null +++ b/icons-react/icons-js/coin-euro.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinEuro({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin-euro" 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={12} r={9} /><path d="M14.401 8c-.669 -.628 -1.5 -1 -2.401 -1c-2.21 0 -4 2.239 -4 5s1.79 5 4 5c.9 0 1.731 -.372 2.4 -1" /><path d="M7 10.5h4" /><path d="M7 13.5h4" /></svg>; +} + +export default IconCoinEuro;
\ No newline at end of file diff --git a/icons-react/icons-js/coin-pound.js b/icons-react/icons-js/coin-pound.js new file mode 100644 index 00000000..e3b0b4dc --- /dev/null +++ b/icons-react/icons-js/coin-pound.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinPound({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin-pound" 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={12} r={9} /><path d="M15 9a2 2 0 1 0 -4 0v5a2 2 0 0 1 -2 2h6" /><path d="M9 12h4" /></svg>; +} + +export default IconCoinPound;
\ No newline at end of file diff --git a/icons-react/icons-js/coin-rupee.js b/icons-react/icons-js/coin-rupee.js new file mode 100644 index 00000000..173529af --- /dev/null +++ b/icons-react/icons-js/coin-rupee.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinRupee({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin-rupee" 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={12} r={9} /><path d="M15 8h-6h1a3 3 0 0 1 0 6h-1l3 3" /><path d="M9 11h6" /></svg>; +} + +export default IconCoinRupee;
\ No newline at end of file diff --git a/icons-react/icons-js/coin-yen.js b/icons-react/icons-js/coin-yen.js new file mode 100644 index 00000000..4b689f26 --- /dev/null +++ b/icons-react/icons-js/coin-yen.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinYen({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin-yen" 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={12} r={9} /><path d="M9 12h6" /><path d="M9 15h6" /><path d="M9 8l3 4.5" /><path d="M15 8l-3 4.5v4.5" /></svg>; +} + +export default IconCoinYen;
\ No newline at end of file diff --git a/icons-react/icons-js/coin-yuan.js b/icons-react/icons-js/coin-yuan.js new file mode 100644 index 00000000..cc8d1b42 --- /dev/null +++ b/icons-react/icons-js/coin-yuan.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCoinYuan({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin-yuan" 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={12} r={9} /><path d="M9 13h6" /><path d="M9 8l3 4.5" /><path d="M15 8l-3 4.5v4.5" /></svg>; +} + +export default IconCoinYuan;
\ No newline at end of file diff --git a/icons-react/icons-js/coin.js b/icons-react/icons-js/coin.js index fc7114ba..1898c4d2 100644 --- a/icons-react/icons-js/coin.js +++ b/icons-react/icons-js/coin.js @@ -6,7 +6,7 @@ function IconCoin({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin" 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={12} r={9} /><path d="M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 0 0 0 4h2a2 2 0 0 1 0 4h-2a2 2 0 0 1 -1.8 -1" /><path d="M12 6v2m0 8v2" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-coin" 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={12} r={9} /><path d="M14.8 9a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1" /><path d="M12 7v10" /></svg>; } export default IconCoin;
\ No newline at end of file diff --git a/icons-react/icons-js/location-broken.js b/icons-react/icons-js/location-broken.js new file mode 100644 index 00000000..1407f0bd --- /dev/null +++ b/icons-react/icons-js/location-broken.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLocationBroken({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-location-broken" 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 20l-3 -6l-7 -3.5a0.55 .55 0 0 1 0 -1l18 -6.5c-1.698 4.703 -3.05 8.37 -4 11" /><path d="M16 17l4 4m0 -4l-4 4" /></svg>; +} + +export default IconLocationBroken;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-look-left.js b/icons-react/icons-js/mood-look-left.js new file mode 100644 index 00000000..579c2233 --- /dev/null +++ b/icons-react/icons-js/mood-look-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodLookLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-look-left" 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={12} r={9} /><path d="M9 9h.01" /><path d="M4 15h4" /></svg>; +} + +export default IconMoodLookLeft;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-look-right.js b/icons-react/icons-js/mood-look-right.js new file mode 100644 index 00000000..f47ad2fa --- /dev/null +++ b/icons-react/icons-js/mood-look-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodLookRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-look-right" 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 transform="matrix(-1 0 0 1 24 0)" cx={12} cy={12} r={9} /><path d="M15 9h-.01" /><path d="M20 15h-4" /></svg>; +} + +export default IconMoodLookRight;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-sing.js b/icons-react/icons-js/mood-sing.js new file mode 100644 index 00000000..47fbd0b5 --- /dev/null +++ b/icons-react/icons-js/mood-sing.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSing({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-sing" 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={12} r={9} /><path d="M9 9h.01" /><path d="M15 9h.01" /><circle cx={15} cy={15} r={2} /></svg>; +} + +export default IconMoodSing;
\ No newline at end of file diff --git a/icons-react/icons-js/navigation.js b/icons-react/icons-js/navigation.js new file mode 100644 index 00000000..73c11a48 --- /dev/null +++ b/icons-react/icons-js/navigation.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNavigation({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-navigation" 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 18.5l7.265 2.463a0.535 .535 0 0 0 .57 -.116a0.548 .548 0 0 0 .134 -.572l-7.969 -17.275l-7.97 17.275a0.547 .547 0 0 0 .135 .572a0.535 .535 0 0 0 .57 .116l7.265 -2.463" /></svg>; +} + +export default IconNavigation;
\ No newline at end of file diff --git a/icons-react/icons-js/packages.js b/icons-react/icons-js/packages.js new file mode 100644 index 00000000..b3f85a2a --- /dev/null +++ b/icons-react/icons-js/packages.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPackages({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-packages" 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={2} y={13} width={8} height={8} rx={2} /><path d="M6 13v3" /><rect x={8} y={3} width={8} height={8} rx={2} /><path d="M12 3v3" /><rect x={14} y={13} width={8} height={8} rx={2} /><path d="M18 13v3" /></svg>; +} + +export default IconPackages;
\ No newline at end of file diff --git a/icons-react/icons-js/tower-off.js b/icons-react/icons-js/tower-off.js new file mode 100644 index 00000000..5cbc5283 --- /dev/null +++ b/icons-react/icons-js/tower-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTowerOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-tower-off" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M10 6v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v1.394m0 4v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394" /><path d="M10 21v-5a2 2 0 1 1 4 0v5" /><path d="M3 3l18 18" /></svg>; +} + +export default IconTowerOff;
\ No newline at end of file diff --git a/icons-react/icons-js/tower.js b/icons-react/icons-js/tower.js new file mode 100644 index 00000000..84ff5ccb --- /dev/null +++ b/icons-react/icons-js/tower.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTower({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-tower" 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 3h1a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2h3v-2a1 1 0 0 1 1 -1h1a1 1 0 0 1 1 1v4.394a2 2 0 0 1 -.336 1.11l-1.328 1.992a2 2 0 0 0 -.336 1.11v7.394a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-7.394a2 2 0 0 0 -.336 -1.11l-1.328 -1.992a2 2 0 0 1 -.336 -1.11v-4.394a1 1 0 0 1 1 -1z" /><path d="M10 21v-5a2 2 0 1 1 4 0v5" /></svg>; +} + +export default IconTower;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 05b338c4..11502421 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -129,6 +129,10 @@ export const IconArrowMergeBoth: TablerIcon; export const IconArrowMergeLeft: TablerIcon; export const IconArrowMergeRight: TablerIcon; export const IconArrowMerge: TablerIcon; +export const IconArrowMoveDown: TablerIcon; +export const IconArrowMoveLeft: TablerIcon; +export const IconArrowMoveRight: TablerIcon; +export const IconArrowMoveUp: TablerIcon; export const IconArrowNarrowDown: TablerIcon; export const IconArrowNarrowLeft: TablerIcon; export const IconArrowNarrowRight: TablerIcon; @@ -750,7 +754,13 @@ export const IconCodePlus: TablerIcon; export const IconCode: TablerIcon; export const IconCoffeeOff: TablerIcon; export const IconCoffee: TablerIcon; +export const IconCoinBitcoin: TablerIcon; +export const IconCoinEuro: TablerIcon; export const IconCoinOff: TablerIcon; +export const IconCoinPound: TablerIcon; +export const IconCoinRupee: TablerIcon; +export const IconCoinYen: TablerIcon; +export const IconCoinYuan: TablerIcon; export const IconCoin: TablerIcon; export const IconColorPickerOff: TablerIcon; export const IconColorPicker: TablerIcon; @@ -1383,6 +1393,7 @@ export const IconLiveView: TablerIcon; export const IconLoader2: TablerIcon; export const IconLoaderQuarter: TablerIcon; export const IconLoader: TablerIcon; +export const IconLocationBroken: TablerIcon; export const IconLocationOff: TablerIcon; export const IconLocation: TablerIcon; export const IconLockAccess: TablerIcon; @@ -1490,10 +1501,13 @@ export const IconMoodCry: TablerIcon; export const IconMoodEmpty: TablerIcon; export const IconMoodHappy: TablerIcon; export const IconMoodKid: TablerIcon; +export const IconMoodLookLeft: TablerIcon; +export const IconMoodLookRight: TablerIcon; export const IconMoodNervous: TablerIcon; export const IconMoodNeutral: TablerIcon; export const IconMoodOff: TablerIcon; export const IconMoodSad: TablerIcon; +export const IconMoodSing: TablerIcon; export const IconMoodSmile: TablerIcon; export const IconMoodSuprised: TablerIcon; export const IconMoodTongue: TablerIcon; @@ -1518,6 +1532,7 @@ export const IconMultiplier2x: TablerIcon; export const IconMushroom: TablerIcon; export const IconMusicOff: TablerIcon; export const IconMusic: TablerIcon; +export const IconNavigation: TablerIcon; export const IconNetwork: TablerIcon; export const IconNewSection: TablerIcon; export const IconNewsOff: TablerIcon; @@ -1560,6 +1575,7 @@ export const IconOval: TablerIcon; export const IconOverline: TablerIcon; export const IconPackageOff: TablerIcon; export const IconPackage: TablerIcon; +export const IconPackages: TablerIcon; export const IconPackgeExport: TablerIcon; export const IconPackgeImport: TablerIcon; export const IconPacman: TablerIcon; @@ -2033,6 +2049,8 @@ export const IconToolsOff: TablerIcon; export const IconTools: TablerIcon; export const IconTornado: TablerIcon; export const IconTournament: TablerIcon; +export const IconTowerOff: TablerIcon; +export const IconTower: TablerIcon; export const IconTrack: TablerIcon; export const IconTractor: TablerIcon; export const IconTrademark: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 2a6c5924..4f3024b6 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -123,6 +123,10 @@ export { default as IconArrowMergeBoth } from './icons-js/arrow-merge-both.js'; export { default as IconArrowMergeLeft } from './icons-js/arrow-merge-left.js'; export { default as IconArrowMergeRight } from './icons-js/arrow-merge-right.js'; export { default as IconArrowMerge } from './icons-js/arrow-merge.js'; +export { default as IconArrowMoveDown } from './icons-js/arrow-move-down.js'; +export { default as IconArrowMoveLeft } from './icons-js/arrow-move-left.js'; +export { default as IconArrowMoveRight } from './icons-js/arrow-move-right.js'; +export { default as IconArrowMoveUp } from './icons-js/arrow-move-up.js'; export { default as IconArrowNarrowDown } from './icons-js/arrow-narrow-down.js'; export { default as IconArrowNarrowLeft } from './icons-js/arrow-narrow-left.js'; export { default as IconArrowNarrowRight } from './icons-js/arrow-narrow-right.js'; @@ -744,7 +748,13 @@ export { default as IconCodePlus } from './icons-js/code-plus.js'; export { default as IconCode } from './icons-js/code.js'; export { default as IconCoffeeOff } from './icons-js/coffee-off.js'; export { default as IconCoffee } from './icons-js/coffee.js'; +export { default as IconCoinBitcoin } from './icons-js/coin-bitcoin.js'; +export { default as IconCoinEuro } from './icons-js/coin-euro.js'; export { default as IconCoinOff } from './icons-js/coin-off.js'; +export { default as IconCoinPound } from './icons-js/coin-pound.js'; +export { default as IconCoinRupee } from './icons-js/coin-rupee.js'; +export { default as IconCoinYen } from './icons-js/coin-yen.js'; +export { default as IconCoinYuan } from './icons-js/coin-yuan.js'; export { default as IconCoin } from './icons-js/coin.js'; export { default as IconColorPickerOff } from './icons-js/color-picker-off.js'; export { default as IconColorPicker } from './icons-js/color-picker.js'; @@ -1377,6 +1387,7 @@ export { default as IconLiveView } from './icons-js/live-view.js'; export { default as IconLoader2 } from './icons-js/loader-2.js'; export { default as IconLoaderQuarter } from './icons-js/loader-quarter.js'; export { default as IconLoader } from './icons-js/loader.js'; +export { default as IconLocationBroken } from './icons-js/location-broken.js'; export { default as IconLocationOff } from './icons-js/location-off.js'; export { default as IconLocation } from './icons-js/location.js'; export { default as IconLockAccess } from './icons-js/lock-access.js'; @@ -1484,10 +1495,13 @@ export { default as IconMoodCry } from './icons-js/mood-cry.js'; export { default as IconMoodEmpty } from './icons-js/mood-empty.js'; export { default as IconMoodHappy } from './icons-js/mood-happy.js'; export { default as IconMoodKid } from './icons-js/mood-kid.js'; +export { default as IconMoodLookLeft } from './icons-js/mood-look-left.js'; +export { default as IconMoodLookRight } from './icons-js/mood-look-right.js'; export { default as IconMoodNervous } from './icons-js/mood-nervous.js'; export { default as IconMoodNeutral } from './icons-js/mood-neutral.js'; export { default as IconMoodOff } from './icons-js/mood-off.js'; export { default as IconMoodSad } from './icons-js/mood-sad.js'; +export { default as IconMoodSing } from './icons-js/mood-sing.js'; export { default as IconMoodSmile } from './icons-js/mood-smile.js'; export { default as IconMoodSuprised } from './icons-js/mood-suprised.js'; export { default as IconMoodTongue } from './icons-js/mood-tongue.js'; @@ -1512,6 +1526,7 @@ export { default as IconMultiplier2x } from './icons-js/multiplier-2x.js'; export { default as IconMushroom } from './icons-js/mushroom.js'; export { default as IconMusicOff } from './icons-js/music-off.js'; export { default as IconMusic } from './icons-js/music.js'; +export { default as IconNavigation } from './icons-js/navigation.js'; export { default as IconNetwork } from './icons-js/network.js'; export { default as IconNewSection } from './icons-js/new-section.js'; export { default as IconNewsOff } from './icons-js/news-off.js'; @@ -1554,6 +1569,7 @@ export { default as IconOval } from './icons-js/oval.js'; export { default as IconOverline } from './icons-js/overline.js'; export { default as IconPackageOff } from './icons-js/package-off.js'; export { default as IconPackage } from './icons-js/package.js'; +export { default as IconPackages } from './icons-js/packages.js'; export { default as IconPackgeExport } from './icons-js/packge-export.js'; export { default as IconPackgeImport } from './icons-js/packge-import.js'; export { default as IconPacman } from './icons-js/pacman.js'; @@ -2027,6 +2043,8 @@ export { default as IconToolsOff } from './icons-js/tools-off.js'; export { default as IconTools } from './icons-js/tools.js'; export { default as IconTornado } from './icons-js/tornado.js'; export { default as IconTournament } from './icons-js/tournament.js'; +export { default as IconTowerOff } from './icons-js/tower-off.js'; +export { default as IconTower } from './icons-js/tower.js'; export { default as IconTrack } from './icons-js/track.js'; export { default as IconTractor } from './icons-js/tractor.js'; export { default as IconTrademark } from './icons-js/trademark.js'; |