diff options
Diffstat (limited to 'icons-react')
21 files changed, 253 insertions, 1 deletions
diff --git a/icons-react/icons-js/api-app.js b/icons-react/icons-js/api-app.js new file mode 100644 index 00000000..c66fd2fa --- /dev/null +++ b/icons-react/icons-js/api-app.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconApiApp({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-api-app" 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 15h-6.5a2.5 2.5 0 1 1 0 -5h.5" /><path d="M15 12v6.5a2.5 2.5 0 1 1 -5 0v-.5" /><path d="M12 9h6.5a2.5 2.5 0 1 1 0 5h-.5" /><path d="M9 12v-6.5a2.5 2.5 0 0 1 5 0v.5" /></svg>; +} + +export default IconApiApp;
\ No newline at end of file diff --git a/icons-react/icons-js/api.js b/icons-react/icons-js/api.js new file mode 100644 index 00000000..8110618e --- /dev/null +++ b/icons-react/icons-js/api.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconApi({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-api" 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 13h5" /><path d="M12 16v-8h3a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-3" /><path d="M20 8v8" /><path d="M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5" /></svg>; +} + +export default IconApi;
\ No newline at end of file diff --git a/icons-react/icons-js/arrows-cross.js b/icons-react/icons-js/arrows-cross.js new file mode 100644 index 00000000..ff80df35 --- /dev/null +++ b/icons-react/icons-js/arrows-cross.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsCross({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-cross" 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 4h4v4" /><path d="M15 9l5 -5" /><path d="M4 20l5 -5" /><path d="M16 20h4v-4" /><path d="M4 4l16 16" /></svg>; +} + +export default IconArrowsCross;
\ No newline at end of file diff --git a/icons-react/icons-js/arrows-shuffle-2.js b/icons-react/icons-js/arrows-shuffle-2.js new file mode 100644 index 00000000..94936ba1 --- /dev/null +++ b/icons-react/icons-js/arrows-shuffle-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsShuffle2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-shuffle-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="M18 4l3 3l-3 3" /><path d="M18 20l3 -3l-3 -3" /><path d="M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5" /><path d="M3 17h3a5 5 0 0 0 5 -5a5 5 0 0 1 5 -5h5" /></svg>; +} + +export default IconArrowsShuffle2;
\ No newline at end of file diff --git a/icons-react/icons-js/arrows-shuffle.js b/icons-react/icons-js/arrows-shuffle.js new file mode 100644 index 00000000..4a1a2a0a --- /dev/null +++ b/icons-react/icons-js/arrows-shuffle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsShuffle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-shuffle" 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="M18 4l3 3l-3 3" /><path d="M18 20l3 -3l-3 -3" /><path d="M3 7h3a5 5 0 0 1 5 5a5 5 0 0 0 5 5h5" /><path d="M21 7h-5a4.978 4.978 0 0 0 -2.998 .998m-4.002 8.003a4.984 4.984 0 0 1 -3 .999h-3" /></svg>; +} + +export default IconArrowsShuffle;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-lastfm.js b/icons-react/icons-js/brand-lastfm.js new file mode 100644 index 00000000..9387dceb --- /dev/null +++ b/icons-react/icons-js/brand-lastfm.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandLastfm({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-lastfm" 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 8c-.83 -1 -1.388 -1 -2 -1c-.612 0 -2 .271 -2 2s1.384 2.233 3 3c1.616 .767 2.125 1.812 2 3s-1 2 -3 2s-3 -1 -3.5 -2s-1.585 -4.78 -2.497 -5.997a5 5 0 1 0 -1.003 6.997" /></svg>; +} + +export default IconBrandLastfm;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-tripadvisor.js b/icons-react/icons-js/brand-tripadvisor.js new file mode 100644 index 00000000..ff17fd19 --- /dev/null +++ b/icons-react/icons-js/brand-tripadvisor.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandTripadvisor({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-tripadvisor" 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={6.5} cy={13.5} r={1.5} /><circle cx={17.5} cy={13.5} r={1.5} /><path d="M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z" /><path d="M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z" /><path d="M10.5 15.5l1.5 2l1.5 -2" /><path d="M9 6.75c2 -.667 4 -.667 6 0" /></svg>; +} + +export default IconBrandTripadvisor;
\ No newline at end of file diff --git a/icons-react/icons-js/c-sharp.js b/icons-react/icons-js/c-sharp.js new file mode 100644 index 00000000..3348a56a --- /dev/null +++ b/icons-react/icons-js/c-sharp.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCSharp({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-c-sharp" 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 9a3 3 0 0 0 -3 -3h-.5a3.5 3.5 0 0 0 -3.5 3.5v5a3.5 3.5 0 0 0 3.5 3.5h.5a3 3 0 0 0 3 -3" /><path d="M16 7l-1 10" /><path d="M20 7l-1 10" /><path d="M14 10h7.5" /><path d="M21 14h-7.5" /></svg>; +} + +export default IconCSharp;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-left-collapse.js b/icons-react/icons-js/layout-sidebar-left-collapse.js new file mode 100644 index 00000000..c94dff61 --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-left-collapse.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarLeftCollapse({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-sidebar-left-collapse" 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={4} y={4} width={16} height={16} rx={2} /><path d="M9 4v16" /><path d="M15 10l-2 2l2 2" /></svg>; +} + +export default IconLayoutSidebarLeftCollapse;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-left-expand.js b/icons-react/icons-js/layout-sidebar-left-expand.js new file mode 100644 index 00000000..e5e52518 --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-left-expand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarLeftExpand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-sidebar-left-expand" 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={4} y={4} width={16} height={16} rx={2} /><path d="M9 4v16" /><path d="M14 10l2 2l-2 2" /></svg>; +} + +export default IconLayoutSidebarLeftExpand;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right-collapse.js b/icons-react/icons-js/layout-sidebar-right-collapse.js new file mode 100644 index 00000000..e7963c7b --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-right-collapse.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarRightCollapse({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-sidebar-right-collapse" 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={4} y={4} width={16} height={16} rx={2} /><path d="M15 4v16" /><path d="M9 10l2 2l-2 2" /></svg>; +} + +export default IconLayoutSidebarRightCollapse;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right-expand.js b/icons-react/icons-js/layout-sidebar-right-expand.js new file mode 100644 index 00000000..cca3ce9f --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-right-expand.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutSidebarRightExpand({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-layout-sidebar-right-expand" 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={4} y={4} width={16} height={16} rx={2} /><path d="M15 4v16" /><path d="M10 10l-2 2l2 2" /></svg>; +} + +export default IconLayoutSidebarRightExpand;
\ No newline at end of file diff --git a/icons-react/icons-js/playlist-add.js b/icons-react/icons-js/playlist-add.js new file mode 100644 index 00000000..c7a95ddc --- /dev/null +++ b/icons-react/icons-js/playlist-add.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaylistAdd({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-playlist-add" 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="M19 8h-14" /><path d="M5 12h9" /><path d="M11 16h-6" /><path d="M15 16h6" /><path d="M18 13v6" /></svg>; +} + +export default IconPlaylistAdd;
\ No newline at end of file diff --git a/icons-react/icons-js/playlist-x.js b/icons-react/icons-js/playlist-x.js new file mode 100644 index 00000000..2f20ef9f --- /dev/null +++ b/icons-react/icons-js/playlist-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaylistX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-playlist-x" 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="M19 8h-14" /><path d="M5 12h7" /><path d="M12 16h-7" /><path d="M16 14l4 4" /><path d="M20 14l-4 4" /></svg>; +} + +export default IconPlaylistX;
\ No newline at end of file diff --git a/icons-react/icons-js/plug-connected.js b/icons-react/icons-js/plug-connected.js new file mode 100644 index 00000000..2515fe3b --- /dev/null +++ b/icons-react/icons-js/plug-connected.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlugConnected({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plug-connected" 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 12l5 5l-1.5 1.5a3.536 3.536 0 1 1 -5 -5l1.5 -1.5z" /><path d="M17 12l-5 -5l1.5 -1.5a3.536 3.536 0 1 1 5 5l-1.5 1.5z" /><path d="M3 21l2.5 -2.5" /><path d="M18.5 5.5l2.5 -2.5" /><path d="M10 11l-2 2" /><path d="M13 14l-2 2" /></svg>; +} + +export default IconPlugConnected;
\ No newline at end of file diff --git a/icons-react/icons-js/plug.js b/icons-react/icons-js/plug.js index b4fe7466..8f1d9547 100644 --- a/icons-react/icons-js/plug.js +++ b/icons-react/icons-js/plug.js @@ -6,7 +6,7 @@ function IconPlug({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plug" 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 7h10v6a3 3 0 0 1 -3 3h-4a3 3 0 0 1 -3 -3v-6" /><line x1={9} y1={3} x2={9} y2={7} /><line x1={15} y1={3} x2={15} y2={7} /><path d="M12 16v2a2 2 0 0 0 2 2h3" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-plug" 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 6l8 8l-2 2a5.657 5.657 0 1 1 -8 -8l2 -2z" /><path d="M4 20l4 -4" /><path d="M15 4l-3.5 3.5" /><path d="M20 9l-3.5 3.5" /></svg>; } export default IconPlug;
\ No newline at end of file diff --git a/icons-react/icons-js/robot.js b/icons-react/icons-js/robot.js new file mode 100644 index 00000000..823e2ccf --- /dev/null +++ b/icons-react/icons-js/robot.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRobot({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-robot" 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 7h10a2 2 0 0 1 2 2v1l1 1v3l-1 1v3a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-3l-1 -1v-3l1 -1v-1a2 2 0 0 1 2 -2z" /><path d="M10 16h4" /><circle cx={8.5} cy={11.5} r={1} /><circle cx={15.5} cy={11.5} r={1} /><path d="M9 7l-1 -4" /><path d="M15 7l1 -4" /></svg>; +} + +export default IconRobot;
\ No newline at end of file diff --git a/icons-react/icons-js/usb.js b/icons-react/icons-js/usb.js new file mode 100644 index 00000000..fdea6ff3 --- /dev/null +++ b/icons-react/icons-js/usb.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconUsb({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-usb" 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={19} r={2} /><path d="M12 17v-11" /><path d="M7 10v3l5 3" /><path d="M12 14.5l5 -2v-2.5" /><path d="M16 10h2v-2h-2z" /><circle cx={7} cy={9} r={1} /><path d="M10 5.5h4l-2 -2.5z" /></svg>; +} + +export default IconUsb;
\ No newline at end of file diff --git a/icons-react/icons-js/vinyl.js b/icons-react/icons-js/vinyl.js new file mode 100644 index 00000000..e6131a08 --- /dev/null +++ b/icons-react/icons-js/vinyl.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconVinyl({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-vinyl" 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.004 3.937a9 9 0 1 0 4.996 8.063" /><circle cx={12} cy={12} r={1} /><circle cx={20} cy={4} r={1} /><path d="M20 4l-3.5 10l-2.5 2" /></svg>; +} + +export default IconVinyl;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index db0b1aef..72e81cce 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -36,6 +36,8 @@ export const IconAntennaBars3: TablerIcon; export const IconAntennaBars4: TablerIcon; export const IconAntennaBars5: TablerIcon; export const IconAperture: TablerIcon; +export const IconApiApp: TablerIcon; +export const IconApi: TablerIcon; export const IconAppWindow: TablerIcon; export const IconApple: TablerIcon; export const IconApps: TablerIcon; @@ -115,6 +117,7 @@ export const IconArrowWaveLeftDown: TablerIcon; export const IconArrowWaveLeftUp: TablerIcon; export const IconArrowWaveRightDown: TablerIcon; export const IconArrowWaveRightUp: TablerIcon; +export const IconArrowsCross: TablerIcon; export const IconArrowsDiagonal2: TablerIcon; export const IconArrowsDiagonalMinimize2: TablerIcon; export const IconArrowsDiagonalMinimize: TablerIcon; @@ -136,6 +139,8 @@ export const IconArrowsMinimize: TablerIcon; export const IconArrowsRightDown: TablerIcon; export const IconArrowsRightLeft: TablerIcon; export const IconArrowsRight: TablerIcon; +export const IconArrowsShuffle2: TablerIcon; +export const IconArrowsShuffle: TablerIcon; export const IconArrowsSort: TablerIcon; export const IconArrowsSplit2: TablerIcon; export const IconArrowsSplit: TablerIcon; @@ -295,6 +300,7 @@ export const IconBrandInstagram: TablerIcon; export const IconBrandJavascript: TablerIcon; export const IconBrandKickstarter: TablerIcon; export const IconBrandKotlin: TablerIcon; +export const IconBrandLastfm: TablerIcon; export const IconBrandLinkedin: TablerIcon; export const IconBrandLoom: TablerIcon; export const IconBrandMastercard: TablerIcon; @@ -337,6 +343,7 @@ export const IconBrandTelegram: TablerIcon; export const IconBrandTidal: TablerIcon; export const IconBrandTiktok: TablerIcon; export const IconBrandTinder: TablerIcon; +export const IconBrandTripadvisor: TablerIcon; export const IconBrandTumblr: TablerIcon; export const IconBrandTwitch: TablerIcon; export const IconBrandTwitter: TablerIcon; @@ -391,6 +398,7 @@ export const IconBulldozer: TablerIcon; export const IconBus: TablerIcon; export const IconBusinessplan: TablerIcon; export const IconButterfly: TablerIcon; +export const IconCSharp: TablerIcon; export const IconCalculator: TablerIcon; export const IconCalendarEvent: TablerIcon; export const IconCalendarMinus: TablerIcon; @@ -893,6 +901,10 @@ export const IconLayoutKanban: TablerIcon; export const IconLayoutList: TablerIcon; export const IconLayoutNavbar: TablerIcon; export const IconLayoutRows: TablerIcon; +export const IconLayoutSidebarLeftCollapse: TablerIcon; +export const IconLayoutSidebarLeftExpand: TablerIcon; +export const IconLayoutSidebarRightCollapse: TablerIcon; +export const IconLayoutSidebarRightExpand: TablerIcon; export const IconLayoutSidebarRight: TablerIcon; export const IconLayoutSidebar: TablerIcon; export const IconLayout: TablerIcon; @@ -1130,7 +1142,10 @@ export const IconPlayerSkipForward: TablerIcon; export const IconPlayerStop: TablerIcon; export const IconPlayerTrackNext: TablerIcon; export const IconPlayerTrackPrev: TablerIcon; +export const IconPlaylistAdd: TablerIcon; +export const IconPlaylistX: TablerIcon; export const IconPlaylist: TablerIcon; +export const IconPlugConnected: TablerIcon; export const IconPlug: TablerIcon; export const IconPlus: TablerIcon; export const IconPoint: TablerIcon; @@ -1189,6 +1204,7 @@ export const IconReport: TablerIcon; export const IconResize: TablerIcon; export const IconRipple: TablerIcon; export const IconRoadSign: TablerIcon; +export const IconRobot: TablerIcon; export const IconRocket: TablerIcon; export const IconRollerSkating: TablerIcon; export const IconRotate2: TablerIcon; @@ -1423,6 +1439,7 @@ export const IconUnderline: TablerIcon; export const IconUnlink: TablerIcon; export const IconUpload: TablerIcon; export const IconUrgent: TablerIcon; +export const IconUsb: TablerIcon; export const IconUserCheck: TablerIcon; export const IconUserCircle: TablerIcon; export const IconUserExclamation: TablerIcon; @@ -1450,6 +1467,7 @@ export const IconView360: TablerIcon; export const IconViewfinder: TablerIcon; export const IconViewportNarrow: TablerIcon; export const IconViewportWide: TablerIcon; +export const IconVinyl: TablerIcon; export const IconVirusOff: TablerIcon; export const IconVirusSearch: TablerIcon; export const IconVirus: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 0ad7ef41..85f1a7f4 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -30,6 +30,8 @@ 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 IconApiApp } from './icons-js/api-app.js'; +export { default as IconApi } from './icons-js/api.js'; export { default as IconAppWindow } from './icons-js/app-window.js'; export { default as IconApple } from './icons-js/apple.js'; export { default as IconApps } from './icons-js/apps.js'; @@ -109,6 +111,7 @@ export { default as IconArrowWaveLeftDown } from './icons-js/arrow-wave-left-dow export { default as IconArrowWaveLeftUp } from './icons-js/arrow-wave-left-up.js'; export { default as IconArrowWaveRightDown } from './icons-js/arrow-wave-right-down.js'; export { default as IconArrowWaveRightUp } from './icons-js/arrow-wave-right-up.js'; +export { default as IconArrowsCross } from './icons-js/arrows-cross.js'; export { default as IconArrowsDiagonal2 } from './icons-js/arrows-diagonal-2.js'; export { default as IconArrowsDiagonalMinimize2 } from './icons-js/arrows-diagonal-minimize-2.js'; export { default as IconArrowsDiagonalMinimize } from './icons-js/arrows-diagonal-minimize.js'; @@ -130,6 +133,8 @@ export { default as IconArrowsMinimize } from './icons-js/arrows-minimize.js'; export { default as IconArrowsRightDown } from './icons-js/arrows-right-down.js'; export { default as IconArrowsRightLeft } from './icons-js/arrows-right-left.js'; export { default as IconArrowsRight } from './icons-js/arrows-right.js'; +export { default as IconArrowsShuffle2 } from './icons-js/arrows-shuffle-2.js'; +export { default as IconArrowsShuffle } from './icons-js/arrows-shuffle.js'; export { default as IconArrowsSort } from './icons-js/arrows-sort.js'; export { default as IconArrowsSplit2 } from './icons-js/arrows-split-2.js'; export { default as IconArrowsSplit } from './icons-js/arrows-split.js'; @@ -289,6 +294,7 @@ 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 IconBrandLastfm } from './icons-js/brand-lastfm.js'; export { default as IconBrandLinkedin } from './icons-js/brand-linkedin.js'; export { default as IconBrandLoom } from './icons-js/brand-loom.js'; export { default as IconBrandMastercard } from './icons-js/brand-mastercard.js'; @@ -331,6 +337,7 @@ export { default as IconBrandTelegram } from './icons-js/brand-telegram.js'; export { default as IconBrandTidal } from './icons-js/brand-tidal.js'; export { default as IconBrandTiktok } from './icons-js/brand-tiktok.js'; export { default as IconBrandTinder } from './icons-js/brand-tinder.js'; +export { default as IconBrandTripadvisor } from './icons-js/brand-tripadvisor.js'; 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'; @@ -385,6 +392,7 @@ export { default as IconBulldozer } from './icons-js/bulldozer.js'; export { default as IconBus } from './icons-js/bus.js'; export { default as IconBusinessplan } from './icons-js/businessplan.js'; export { default as IconButterfly } from './icons-js/butterfly.js'; +export { default as IconCSharp } from './icons-js/c-sharp.js'; export { default as IconCalculator } from './icons-js/calculator.js'; export { default as IconCalendarEvent } from './icons-js/calendar-event.js'; export { default as IconCalendarMinus } from './icons-js/calendar-minus.js'; @@ -887,6 +895,10 @@ export { default as IconLayoutKanban } from './icons-js/layout-kanban.js'; export { default as IconLayoutList } from './icons-js/layout-list.js'; export { default as IconLayoutNavbar } from './icons-js/layout-navbar.js'; export { default as IconLayoutRows } from './icons-js/layout-rows.js'; +export { default as IconLayoutSidebarLeftCollapse } from './icons-js/layout-sidebar-left-collapse.js'; +export { default as IconLayoutSidebarLeftExpand } from './icons-js/layout-sidebar-left-expand.js'; +export { default as IconLayoutSidebarRightCollapse } from './icons-js/layout-sidebar-right-collapse.js'; +export { default as IconLayoutSidebarRightExpand } from './icons-js/layout-sidebar-right-expand.js'; export { default as IconLayoutSidebarRight } from './icons-js/layout-sidebar-right.js'; export { default as IconLayoutSidebar } from './icons-js/layout-sidebar.js'; export { default as IconLayout } from './icons-js/layout.js'; @@ -1124,7 +1136,10 @@ export { default as IconPlayerSkipForward } from './icons-js/player-skip-forward export { default as IconPlayerStop } from './icons-js/player-stop.js'; export { default as IconPlayerTrackNext } from './icons-js/player-track-next.js'; export { default as IconPlayerTrackPrev } from './icons-js/player-track-prev.js'; +export { default as IconPlaylistAdd } from './icons-js/playlist-add.js'; +export { default as IconPlaylistX } from './icons-js/playlist-x.js'; export { default as IconPlaylist } from './icons-js/playlist.js'; +export { default as IconPlugConnected } from './icons-js/plug-connected.js'; export { default as IconPlug } from './icons-js/plug.js'; export { default as IconPlus } from './icons-js/plus.js'; export { default as IconPoint } from './icons-js/point.js'; @@ -1183,6 +1198,7 @@ export { default as IconReport } from './icons-js/report.js'; export { default as IconResize } from './icons-js/resize.js'; export { default as IconRipple } from './icons-js/ripple.js'; export { default as IconRoadSign } from './icons-js/road-sign.js'; +export { default as IconRobot } from './icons-js/robot.js'; export { default as IconRocket } from './icons-js/rocket.js'; export { default as IconRollerSkating } from './icons-js/roller-skating.js'; export { default as IconRotate2 } from './icons-js/rotate-2.js'; @@ -1417,6 +1433,7 @@ export { default as IconUnderline } from './icons-js/underline.js'; export { default as IconUnlink } from './icons-js/unlink.js'; export { default as IconUpload } from './icons-js/upload.js'; export { default as IconUrgent } from './icons-js/urgent.js'; +export { default as IconUsb } from './icons-js/usb.js'; export { default as IconUserCheck } from './icons-js/user-check.js'; export { default as IconUserCircle } from './icons-js/user-circle.js'; export { default as IconUserExclamation } from './icons-js/user-exclamation.js'; @@ -1444,6 +1461,7 @@ export { default as IconView360 } from './icons-js/view-360.js'; export { default as IconViewfinder } from './icons-js/viewfinder.js'; export { default as IconViewportNarrow } from './icons-js/viewport-narrow.js'; export { default as IconViewportWide } from './icons-js/viewport-wide.js'; +export { default as IconVinyl } from './icons-js/vinyl.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'; |