From b26765726e69e480f0008d7a5c07cb37c816d446 Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 10 Aug 2022 13:15:20 +0200 Subject: Release 1.80.0 --- icons-react/icons-js/box-align-bottom.js | 12 ++++++++++++ icons-react/icons-js/box-align-left.js | 12 ++++++++++++ icons-react/icons-js/box-align-right.js | 12 ++++++++++++ icons-react/icons-js/box-align-top.js | 12 ++++++++++++ icons-react/icons-js/brand-unity.js | 12 ++++++++++++ icons-react/icons-js/playstation-circle.js | 12 ++++++++++++ icons-react/icons-js/playstation-square.js | 12 ++++++++++++ icons-react/icons-js/playstation-triangle.js | 12 ++++++++++++ icons-react/icons-js/playstation-x.js | 12 ++++++++++++ icons-react/icons-js/text-size.js | 12 ++++++++++++ icons-react/icons-js/transition-bottom.js | 12 ++++++++++++ icons-react/icons-js/transition-left.js | 12 ++++++++++++ icons-react/icons-js/transition-right.js | 12 ++++++++++++ icons-react/icons-js/transition-top.js | 12 ++++++++++++ icons-react/icons-js/xbox-a.js | 12 ++++++++++++ icons-react/icons-js/xbox-b.js | 12 ++++++++++++ icons-react/icons-js/xbox-x.js | 12 ++++++++++++ icons-react/icons-js/xbox-y.js | 12 ++++++++++++ 18 files changed, 216 insertions(+) create mode 100644 icons-react/icons-js/box-align-bottom.js create mode 100644 icons-react/icons-js/box-align-left.js create mode 100644 icons-react/icons-js/box-align-right.js create mode 100644 icons-react/icons-js/box-align-top.js create mode 100644 icons-react/icons-js/brand-unity.js create mode 100644 icons-react/icons-js/playstation-circle.js create mode 100644 icons-react/icons-js/playstation-square.js create mode 100644 icons-react/icons-js/playstation-triangle.js create mode 100644 icons-react/icons-js/playstation-x.js create mode 100644 icons-react/icons-js/text-size.js create mode 100644 icons-react/icons-js/transition-bottom.js create mode 100644 icons-react/icons-js/transition-left.js create mode 100644 icons-react/icons-js/transition-right.js create mode 100644 icons-react/icons-js/transition-top.js create mode 100644 icons-react/icons-js/xbox-a.js create mode 100644 icons-react/icons-js/xbox-b.js create mode 100644 icons-react/icons-js/xbox-x.js create mode 100644 icons-react/icons-js/xbox-y.js (limited to 'icons-react/icons-js') 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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +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 ; +} + +export default IconXboxY; \ No newline at end of file -- cgit v1.2.1