aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-08-10 13:15:20 +0200
committercodecalm <codecalm@gmail.com>2022-08-10 13:15:20 +0200
commitb26765726e69e480f0008d7a5c07cb37c816d446 (patch)
tree5bf622060ee9260ecfb54d6c50020713d05333cd /icons-react/icons-js
parent18 new icons: `box-align-bottom`, `box-align-left`, `box-align-right`, `box-a... (diff)
downloadtabler-icons-37ea5573fd34144791431b3de0b674365f857b7e.tar.xz
Release 1.80.0v1.80.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/box-align-bottom.js12
-rw-r--r--icons-react/icons-js/box-align-left.js12
-rw-r--r--icons-react/icons-js/box-align-right.js12
-rw-r--r--icons-react/icons-js/box-align-top.js12
-rw-r--r--icons-react/icons-js/brand-unity.js12
-rw-r--r--icons-react/icons-js/playstation-circle.js12
-rw-r--r--icons-react/icons-js/playstation-square.js12
-rw-r--r--icons-react/icons-js/playstation-triangle.js12
-rw-r--r--icons-react/icons-js/playstation-x.js12
-rw-r--r--icons-react/icons-js/text-size.js12
-rw-r--r--icons-react/icons-js/transition-bottom.js12
-rw-r--r--icons-react/icons-js/transition-left.js12
-rw-r--r--icons-react/icons-js/transition-right.js12
-rw-r--r--icons-react/icons-js/transition-top.js12
-rw-r--r--icons-react/icons-js/xbox-a.js12
-rw-r--r--icons-react/icons-js/xbox-b.js12
-rw-r--r--icons-react/icons-js/xbox-x.js12
-rw-r--r--icons-react/icons-js/xbox-y.js12
18 files changed, 216 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