diff options
Diffstat (limited to 'icons-react')
-rw-r--r-- | icons-react/icons-js/box-align-bottom.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/box-align-left.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/box-align-right.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/box-align-top.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/brand-unity.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/playstation-circle.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/playstation-square.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/playstation-triangle.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/playstation-x.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/text-size.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/transition-bottom.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/transition-left.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/transition-right.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/transition-top.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/xbox-a.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/xbox-b.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/xbox-x.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/xbox-y.js | 12 | ||||
-rw-r--r-- | icons-react/index.d.ts | 18 | ||||
-rw-r--r-- | icons-react/index.js | 18 |
20 files changed, 252 insertions, 0 deletions
diff --git a/icons-react/icons-js/box-align-bottom.js b/icons-react/icons-js/box-align-bottom.js new file mode 100644 index 00000000..0d228033 --- /dev/null +++ b/icons-react/icons-js/box-align-bottom.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBoxAlignBottom({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-bottom" 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 14h16v5a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1v-5z" /><path d="M4 9v.01" /><path d="M4 4v.01" /><path d="M9 4v.01" /><path d="M15 4v.01" /><path d="M20 4v.01" /><path d="M20 9v.01" /></svg>; +} + +export default IconBoxAlignBottom;
\ No newline at end of file diff --git a/icons-react/icons-js/box-align-left.js b/icons-react/icons-js/box-align-left.js new file mode 100644 index 00000000..0259e8f9 --- /dev/null +++ b/icons-react/icons-js/box-align-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBoxAlignLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-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="M9.752 19.753v-16h-5a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1h5z" /><path d="M14.752 19.753h-.01" /><path d="M19.753 19.753h-.011" /><path d="M19.753 14.752h-.011" /><path d="M19.753 8.752h-.011" /><path d="M19.753 3.752h-.011" /><path d="M14.752 3.752h-.01" /></svg>; +} + +export default IconBoxAlignLeft;
\ No newline at end of file diff --git a/icons-react/icons-js/box-align-right.js b/icons-react/icons-js/box-align-right.js new file mode 100644 index 00000000..ddfc4642 --- /dev/null +++ b/icons-react/icons-js/box-align-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBoxAlignRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-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="M14.248 19.753v-16h5a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-5z" /><path d="M9.248 19.753h.01" /><path d="M4.247 19.753h.011" /><path d="M4.247 14.752h.011" /><path d="M4.247 8.752h.011" /><path d="M4.247 3.752h.011" /><path d="M9.248 3.752h.01" /></svg>; +} + +export default IconBoxAlignRight;
\ No newline at end of file diff --git a/icons-react/icons-js/box-align-top.js b/icons-react/icons-js/box-align-top.js new file mode 100644 index 00000000..7fc95de1 --- /dev/null +++ b/icons-react/icons-js/box-align-top.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBoxAlignTop({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-box-align-top" 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 9.505h16v-5a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1v5z" /><path d="M4 14.505v-.01" /><path d="M4 19.505v-.01" /><path d="M9 19.505v-.01" /><path d="M15 19.505v-.01" /><path d="M20 19.505v-.01" /><path d="M20 14.505v-.01" /></svg>; +} + +export default IconBoxAlignTop;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-unity.js b/icons-react/icons-js/brand-unity.js new file mode 100644 index 00000000..be7f2170 --- /dev/null +++ b/icons-react/icons-js/brand-unity.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandUnity({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-unity" 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="M2 13h11l5 -10" /><path d="M6.5 18l-4.5 -5l4.5 -5" /><path d="M13 13l5 8" /><path d="M11.5 4l6.5 -1l2 6" /><path d="M20 15l-2 6l-6.5 -.5" /></svg>; +} + +export default IconBrandUnity;
\ No newline at end of file diff --git a/icons-react/icons-js/playstation-circle.js b/icons-react/icons-js/playstation-circle.js new file mode 100644 index 00000000..a09a1f9f --- /dev/null +++ b/icons-react/icons-js/playstation-circle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaystationCircle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-playstation-circle" 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 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><circle cx={12} cy={12} r={4.5} /></svg>; +} + +export default IconPlaystationCircle;
\ No newline at end of file diff --git a/icons-react/icons-js/playstation-square.js b/icons-react/icons-js/playstation-square.js new file mode 100644 index 00000000..068117ba --- /dev/null +++ b/icons-react/icons-js/playstation-square.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaystationSquare({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-playstation-square" 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 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><rect x={8} y={8} width={8} height={8} rx={1} /></svg>; +} + +export default IconPlaystationSquare;
\ No newline at end of file diff --git a/icons-react/icons-js/playstation-triangle.js b/icons-react/icons-js/playstation-triangle.js new file mode 100644 index 00000000..0b9413b3 --- /dev/null +++ b/icons-react/icons-js/playstation-triangle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaystationTriangle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-playstation-triangle" 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 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><path d="M7.5 15h9l-4.5 -8z" /></svg>; +} + +export default IconPlaystationTriangle;
\ No newline at end of file diff --git a/icons-react/icons-js/playstation-x.js b/icons-react/icons-js/playstation-x.js new file mode 100644 index 00000000..75fb77c7 --- /dev/null +++ b/icons-react/icons-js/playstation-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaystationX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-playstation-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="M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><path d="M8.5 8.5l7 7" /><path d="M8.5 15.5l7 -7" /></svg>; +} + +export default IconPlaystationX;
\ No newline at end of file diff --git a/icons-react/icons-js/text-size.js b/icons-react/icons-js/text-size.js new file mode 100644 index 00000000..57211f19 --- /dev/null +++ b/icons-react/icons-js/text-size.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTextSize({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-size" 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 7v-2h13v2" /><path d="M10 5v14" /><path d="M12 19h-4" /><path d="M15 13v-1h6v1" /><path d="M18 12v7" /><path d="M17 19h2" /></svg>; +} + +export default IconTextSize;
\ No newline at end of file diff --git a/icons-react/icons-js/transition-bottom.js b/icons-react/icons-js/transition-bottom.js new file mode 100644 index 00000000..a5f103c2 --- /dev/null +++ b/icons-react/icons-js/transition-bottom.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTransitionBottom({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-transition-bottom" 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 18a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3" /><rect x={3} y={3} width={18} height={6} rx={3} /><path d="M12 9v8" /><path d="M9 14l3 3l3 -3" /></svg>; +} + +export default IconTransitionBottom;
\ No newline at end of file diff --git a/icons-react/icons-js/transition-left.js b/icons-react/icons-js/transition-left.js new file mode 100644 index 00000000..83416aa6 --- /dev/null +++ b/icons-react/icons-js/transition-left.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTransitionLeft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-transition-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="M6 21a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3" /><path d="M21 6v12a3 3 0 0 1 -6 0v-12a3 3 0 0 1 6 0z" /><path d="M15 12h-8" /><path d="M10 9l-3 3l3 3" /></svg>; +} + +export default IconTransitionLeft;
\ No newline at end of file diff --git a/icons-react/icons-js/transition-right.js b/icons-react/icons-js/transition-right.js new file mode 100644 index 00000000..0743da41 --- /dev/null +++ b/icons-react/icons-js/transition-right.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTransitionRight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-transition-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="M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3" /><path d="M3 18v-12a3 3 0 1 1 6 0v12a3 3 0 0 1 -6 0z" /><path d="M9 12h8" /><path d="M14 15l3 -3l-3 -3" /></svg>; +} + +export default IconTransitionRight;
\ No newline at end of file diff --git a/icons-react/icons-js/transition-top.js b/icons-react/icons-js/transition-top.js new file mode 100644 index 00000000..6f1ef9f4 --- /dev/null +++ b/icons-react/icons-js/transition-top.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTransitionTop({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-transition-top" 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 6a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3" /><path d="M6 21h12a3 3 0 0 0 0 -6h-12a3 3 0 0 0 0 6z" /><path d="M12 15v-8" /><path d="M9 10l3 -3l3 3" /></svg>; +} + +export default IconTransitionTop;
\ No newline at end of file diff --git a/icons-react/icons-js/xbox-a.js b/icons-react/icons-js/xbox-a.js new file mode 100644 index 00000000..e146057d --- /dev/null +++ b/icons-react/icons-js/xbox-a.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconXboxA({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-xbox-a" 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 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><path d="M15 16l-3 -8l-3 8" /><path d="M14 14h-4" /></svg>; +} + +export default IconXboxA;
\ No newline at end of file diff --git a/icons-react/icons-js/xbox-b.js b/icons-react/icons-js/xbox-b.js new file mode 100644 index 00000000..f49adcdb --- /dev/null +++ b/icons-react/icons-js/xbox-b.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconXboxB({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-xbox-b" 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 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><path d="M13 12a2 2 0 1 1 0 4h-3v-4" /><path d="M13 12h-3" /><path d="M13 12a2 2 0 1 0 0 -4h-3v4" /></svg>; +} + +export default IconXboxB;
\ No newline at end of file diff --git a/icons-react/icons-js/xbox-x.js b/icons-react/icons-js/xbox-x.js new file mode 100644 index 00000000..475dd004 --- /dev/null +++ b/icons-react/icons-js/xbox-x.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconXboxX({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-xbox-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="M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><path d="M9 8l6 8" /><path d="M15 8l-6 8" /></svg>; +} + +export default IconXboxX;
\ No newline at end of file diff --git a/icons-react/icons-js/xbox-y.js b/icons-react/icons-js/xbox-y.js new file mode 100644 index 00000000..4bb2fd2f --- /dev/null +++ b/icons-react/icons-js/xbox-y.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconXboxY({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-xbox-y" 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 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z" /><path d="M9 8l3 4" /><path d="M15 8l-2.988 3.984l-.012 4.016" /></svg>; +} + +export default IconXboxY;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 528fbedb..05b338c4 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -333,6 +333,10 @@ export const IconBorderTop: TablerIcon; export const IconBorderVertical: TablerIcon; export const IconBottle: TablerIcon; export const IconBow: TablerIcon; +export const IconBoxAlignBottom: TablerIcon; +export const IconBoxAlignLeft: TablerIcon; +export const IconBoxAlignRight: TablerIcon; +export const IconBoxAlignTop: TablerIcon; export const IconBoxMargin: TablerIcon; export const IconBoxModel2: TablerIcon; export const IconBoxModel: TablerIcon; @@ -490,6 +494,7 @@ export const IconBrandTwitch: TablerIcon; export const IconBrandTwitter: TablerIcon; export const IconBrandUber: TablerIcon; export const IconBrandUbuntu: TablerIcon; +export const IconBrandUnity: TablerIcon; export const IconBrandUnsplash: TablerIcon; export const IconBrandVercel: TablerIcon; export const IconBrandVimeo: TablerIcon; @@ -1643,6 +1648,10 @@ export const IconPlaylistAdd: TablerIcon; export const IconPlaylistOff: TablerIcon; export const IconPlaylistX: TablerIcon; export const IconPlaylist: TablerIcon; +export const IconPlaystationCircle: TablerIcon; +export const IconPlaystationSquare: TablerIcon; +export const IconPlaystationTriangle: TablerIcon; +export const IconPlaystationX: TablerIcon; export const IconPlugConnectedX: TablerIcon; export const IconPlugConnected: TablerIcon; export const IconPlugOff: TablerIcon; @@ -1997,6 +2006,7 @@ export const IconTextOrientation: TablerIcon; export const IconTextPlus: TablerIcon; export const IconTextRecognition: TablerIcon; export const IconTextResize: TablerIcon; +export const IconTextSize: TablerIcon; export const IconTextSpellcheck: TablerIcon; export const IconTextWrapDisabled: TablerIcon; export const IconTextWrap: TablerIcon; @@ -2033,6 +2043,10 @@ export const IconTrafficLights: TablerIcon; export const IconTrain: TablerIcon; export const IconTransferIn: TablerIcon; export const IconTransferOut: TablerIcon; +export const IconTransitionBottom: TablerIcon; +export const IconTransitionLeft: TablerIcon; +export const IconTransitionRight: TablerIcon; +export const IconTransitionTop: TablerIcon; export const IconTrashOff: TablerIcon; export const IconTrashX: TablerIcon; export const IconTrash: TablerIcon; @@ -2153,6 +2167,10 @@ export const IconWritingSignOff: TablerIcon; export const IconWritingSign: TablerIcon; export const IconWriting: TablerIcon; export const IconX: TablerIcon; +export const IconXboxA: TablerIcon; +export const IconXboxB: TablerIcon; +export const IconXboxX: TablerIcon; +export const IconXboxY: TablerIcon; export const IconYinYang: TablerIcon; export const IconYoga: TablerIcon; export const IconZeppelin: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 575e366f..2a6c5924 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -327,6 +327,10 @@ 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 IconBow } from './icons-js/bow.js'; +export { default as IconBoxAlignBottom } from './icons-js/box-align-bottom.js'; +export { default as IconBoxAlignLeft } from './icons-js/box-align-left.js'; +export { default as IconBoxAlignRight } from './icons-js/box-align-right.js'; +export { default as IconBoxAlignTop } from './icons-js/box-align-top.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'; @@ -484,6 +488,7 @@ export { default as IconBrandTwitch } from './icons-js/brand-twitch.js'; export { default as IconBrandTwitter } from './icons-js/brand-twitter.js'; export { default as IconBrandUber } from './icons-js/brand-uber.js'; export { default as IconBrandUbuntu } from './icons-js/brand-ubuntu.js'; +export { default as IconBrandUnity } from './icons-js/brand-unity.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'; @@ -1637,6 +1642,10 @@ export { default as IconPlaylistAdd } from './icons-js/playlist-add.js'; export { default as IconPlaylistOff } from './icons-js/playlist-off.js'; export { default as IconPlaylistX } from './icons-js/playlist-x.js'; export { default as IconPlaylist } from './icons-js/playlist.js'; +export { default as IconPlaystationCircle } from './icons-js/playstation-circle.js'; +export { default as IconPlaystationSquare } from './icons-js/playstation-square.js'; +export { default as IconPlaystationTriangle } from './icons-js/playstation-triangle.js'; +export { default as IconPlaystationX } from './icons-js/playstation-x.js'; export { default as IconPlugConnectedX } from './icons-js/plug-connected-x.js'; export { default as IconPlugConnected } from './icons-js/plug-connected.js'; export { default as IconPlugOff } from './icons-js/plug-off.js'; @@ -1991,6 +2000,7 @@ export { default as IconTextOrientation } from './icons-js/text-orientation.js'; export { default as IconTextPlus } from './icons-js/text-plus.js'; export { default as IconTextRecognition } from './icons-js/text-recognition.js'; export { default as IconTextResize } from './icons-js/text-resize.js'; +export { default as IconTextSize } from './icons-js/text-size.js'; export { default as IconTextSpellcheck } from './icons-js/text-spellcheck.js'; export { default as IconTextWrapDisabled } from './icons-js/text-wrap-disabled.js'; export { default as IconTextWrap } from './icons-js/text-wrap.js'; @@ -2027,6 +2037,10 @@ 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 IconTransitionBottom } from './icons-js/transition-bottom.js'; +export { default as IconTransitionLeft } from './icons-js/transition-left.js'; +export { default as IconTransitionRight } from './icons-js/transition-right.js'; +export { default as IconTransitionTop } from './icons-js/transition-top.js'; export { default as IconTrashOff } from './icons-js/trash-off.js'; export { default as IconTrashX } from './icons-js/trash-x.js'; export { default as IconTrash } from './icons-js/trash.js'; @@ -2147,6 +2161,10 @@ export { default as IconWritingSignOff } from './icons-js/writing-sign-off.js'; export { default as IconWritingSign } from './icons-js/writing-sign.js'; export { default as IconWriting } from './icons-js/writing.js'; export { default as IconX } from './icons-js/x.js'; +export { default as IconXboxA } from './icons-js/xbox-a.js'; +export { default as IconXboxB } from './icons-js/xbox-b.js'; +export { default as IconXboxX } from './icons-js/xbox-x.js'; +export { default as IconXboxY } from './icons-js/xbox-y.js'; export { default as IconYinYang } from './icons-js/yin-yang.js'; export { default as IconYoga } from './icons-js/yoga.js'; export { default as IconZeppelin } from './icons-js/zeppelin.js'; |