From aeb94bc15dfe4fd0d85e3f0f0df52f5147a627d2 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 20 Feb 2022 17:39:36 +0100 Subject: Release 1.54.0 --- icons-react/icons-js/barrier-block.js | 12 ++++++++++++ icons-react/icons-js/cake.js | 12 ++++++++++++ icons-react/icons-js/circle-rectangle.js | 12 ++++++++++++ icons-react/icons-js/circle-triangle.js | 12 ++++++++++++ icons-react/icons-js/message-2-code.js | 12 ++++++++++++ icons-react/icons-js/message-code.js | 12 ++++++++++++ icons-react/icons-js/north-star.js | 12 ++++++++++++ icons-react/icons-js/numbers.js | 12 ++++++++++++ icons-react/icons-js/radar-2.js | 12 ++++++++++++ icons-react/icons-js/radar.js | 12 ++++++++++++ icons-react/icons-js/road.js | 12 ++++++++++++ icons-react/icons-js/robot.js | 2 +- icons-react/icons-js/section-sign.js | 12 ++++++++++++ icons-react/icons-js/square-asterisk.js | 12 ++++++++++++ icons-react/icons-js/square-rotated-forbid-2.js | 12 ++++++++++++ icons-react/icons-js/square-rotated-forbid.js | 12 ++++++++++++ icons-react/icons-js/triangle-inverted.js | 12 ++++++++++++ icons-react/icons-js/usb.js | 2 +- icons-react/icons-js/webhook.js | 12 ++++++++++++ icons-react/icons-js/yoga.js | 12 ++++++++++++ 20 files changed, 218 insertions(+), 2 deletions(-) create mode 100644 icons-react/icons-js/barrier-block.js create mode 100644 icons-react/icons-js/cake.js create mode 100644 icons-react/icons-js/circle-rectangle.js create mode 100644 icons-react/icons-js/circle-triangle.js create mode 100644 icons-react/icons-js/message-2-code.js create mode 100644 icons-react/icons-js/message-code.js create mode 100644 icons-react/icons-js/north-star.js create mode 100644 icons-react/icons-js/numbers.js create mode 100644 icons-react/icons-js/radar-2.js create mode 100644 icons-react/icons-js/radar.js create mode 100644 icons-react/icons-js/road.js create mode 100644 icons-react/icons-js/section-sign.js create mode 100644 icons-react/icons-js/square-asterisk.js create mode 100644 icons-react/icons-js/square-rotated-forbid-2.js create mode 100644 icons-react/icons-js/square-rotated-forbid.js create mode 100644 icons-react/icons-js/triangle-inverted.js create mode 100644 icons-react/icons-js/webhook.js create mode 100644 icons-react/icons-js/yoga.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/barrier-block.js b/icons-react/icons-js/barrier-block.js new file mode 100644 index 00000000..7999299f --- /dev/null +++ b/icons-react/icons-js/barrier-block.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBarrierBlock({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBarrierBlock; \ No newline at end of file diff --git a/icons-react/icons-js/cake.js b/icons-react/icons-js/cake.js new file mode 100644 index 00000000..2a5af158 --- /dev/null +++ b/icons-react/icons-js/cake.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCake({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCake; \ No newline at end of file diff --git a/icons-react/icons-js/circle-rectangle.js b/icons-react/icons-js/circle-rectangle.js new file mode 100644 index 00000000..0eaf17ca --- /dev/null +++ b/icons-react/icons-js/circle-rectangle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCircleRectangle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCircleRectangle; \ No newline at end of file diff --git a/icons-react/icons-js/circle-triangle.js b/icons-react/icons-js/circle-triangle.js new file mode 100644 index 00000000..b21bbb2d --- /dev/null +++ b/icons-react/icons-js/circle-triangle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCircleTriangle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCircleTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/message-2-code.js b/icons-react/icons-js/message-2-code.js new file mode 100644 index 00000000..a00ffaa1 --- /dev/null +++ b/icons-react/icons-js/message-2-code.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMessage2Code({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMessage2Code; \ No newline at end of file diff --git a/icons-react/icons-js/message-code.js b/icons-react/icons-js/message-code.js new file mode 100644 index 00000000..253ee6f8 --- /dev/null +++ b/icons-react/icons-js/message-code.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMessageCode({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMessageCode; \ No newline at end of file diff --git a/icons-react/icons-js/north-star.js b/icons-react/icons-js/north-star.js new file mode 100644 index 00000000..6f6c5540 --- /dev/null +++ b/icons-react/icons-js/north-star.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNorthStar({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconNorthStar; \ No newline at end of file diff --git a/icons-react/icons-js/numbers.js b/icons-react/icons-js/numbers.js new file mode 100644 index 00000000..4aa892da --- /dev/null +++ b/icons-react/icons-js/numbers.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumbers({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconNumbers; \ No newline at end of file diff --git a/icons-react/icons-js/radar-2.js b/icons-react/icons-js/radar-2.js new file mode 100644 index 00000000..db8e0425 --- /dev/null +++ b/icons-react/icons-js/radar-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRadar2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRadar2; \ No newline at end of file diff --git a/icons-react/icons-js/radar.js b/icons-react/icons-js/radar.js new file mode 100644 index 00000000..f9152df1 --- /dev/null +++ b/icons-react/icons-js/radar.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRadar({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRadar; \ No newline at end of file diff --git a/icons-react/icons-js/road.js b/icons-react/icons-js/road.js new file mode 100644 index 00000000..9580ac30 --- /dev/null +++ b/icons-react/icons-js/road.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRoad({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRoad; \ No newline at end of file diff --git a/icons-react/icons-js/robot.js b/icons-react/icons-js/robot.js index 823e2ccf..c46923c9 100644 --- a/icons-react/icons-js/robot.js +++ b/icons-react/icons-js/robot.js @@ -6,7 +6,7 @@ function IconRobot({ stroke = 2, ...props }) { - return ; + return ; } export default IconRobot; \ No newline at end of file diff --git a/icons-react/icons-js/section-sign.js b/icons-react/icons-js/section-sign.js new file mode 100644 index 00000000..87b3a3b9 --- /dev/null +++ b/icons-react/icons-js/section-sign.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSectionSign({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSectionSign; \ No newline at end of file diff --git a/icons-react/icons-js/square-asterisk.js b/icons-react/icons-js/square-asterisk.js new file mode 100644 index 00000000..1dd5354f --- /dev/null +++ b/icons-react/icons-js/square-asterisk.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSquareAsterisk({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSquareAsterisk; \ No newline at end of file diff --git a/icons-react/icons-js/square-rotated-forbid-2.js b/icons-react/icons-js/square-rotated-forbid-2.js new file mode 100644 index 00000000..04aafdf9 --- /dev/null +++ b/icons-react/icons-js/square-rotated-forbid-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSquareRotatedForbid2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSquareRotatedForbid2; \ No newline at end of file diff --git a/icons-react/icons-js/square-rotated-forbid.js b/icons-react/icons-js/square-rotated-forbid.js new file mode 100644 index 00000000..ea59ea36 --- /dev/null +++ b/icons-react/icons-js/square-rotated-forbid.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSquareRotatedForbid({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSquareRotatedForbid; \ No newline at end of file diff --git a/icons-react/icons-js/triangle-inverted.js b/icons-react/icons-js/triangle-inverted.js new file mode 100644 index 00000000..2ebb838b --- /dev/null +++ b/icons-react/icons-js/triangle-inverted.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTriangleInverted({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconTriangleInverted; \ No newline at end of file diff --git a/icons-react/icons-js/usb.js b/icons-react/icons-js/usb.js index fdea6ff3..769b1ec1 100644 --- a/icons-react/icons-js/usb.js +++ b/icons-react/icons-js/usb.js @@ -6,7 +6,7 @@ function IconUsb({ stroke = 2, ...props }) { - return ; + return ; } export default IconUsb; \ No newline at end of file diff --git a/icons-react/icons-js/webhook.js b/icons-react/icons-js/webhook.js new file mode 100644 index 00000000..ee22d4c2 --- /dev/null +++ b/icons-react/icons-js/webhook.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconWebhook({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconWebhook; \ No newline at end of file diff --git a/icons-react/icons-js/yoga.js b/icons-react/icons-js/yoga.js new file mode 100644 index 00000000..226860fe --- /dev/null +++ b/icons-react/icons-js/yoga.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconYoga({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconYoga; \ No newline at end of file -- cgit v1.2.1