From 132842cb153820037bb7fa695655f6606e0f14e7 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 16 Jul 2022 08:47:16 +0200 Subject: Release 1.76.0 --- icons-react/icons-js/a-b-2.js | 12 ++++++++++++ icons-react/icons-js/brand-deno.js | 2 +- icons-react/icons-js/brand-fortnite.js | 12 ++++++++++++ icons-react/icons-js/brand-pepsi.js | 12 ++++++++++++ icons-react/icons-js/brand-toyota.js | 12 ++++++++++++ icons-react/icons-js/masks-theater.js | 12 ++++++++++++ icons-react/icons-js/microwave-off.js | 12 ++++++++++++ icons-react/icons-js/pointer.js | 12 ++++++++++++ icons-react/icons-js/rating-12-plus.js | 12 ++++++++++++ icons-react/icons-js/rating-14-plus.js | 12 ++++++++++++ icons-react/icons-js/rating-16-plus.js | 12 ++++++++++++ icons-react/icons-js/rating-18-plus.js | 12 ++++++++++++ icons-react/icons-js/rating-21-plus.js | 12 ++++++++++++ icons-react/icons-js/seo.js | 12 ++++++++++++ icons-react/icons-js/shirt-sport.js | 12 ++++++++++++ icons-react/icons-js/snowman.js | 12 ++++++++++++ icons-react/icons-js/uf-off.js | 12 ++++++++++++ icons-react/icons-js/ufo.js | 12 ++++++++++++ icons-react/icons-js/zeppelin.js | 12 ++++++++++++ 19 files changed, 217 insertions(+), 1 deletion(-) create mode 100644 icons-react/icons-js/a-b-2.js create mode 100644 icons-react/icons-js/brand-fortnite.js create mode 100644 icons-react/icons-js/brand-pepsi.js create mode 100644 icons-react/icons-js/brand-toyota.js create mode 100644 icons-react/icons-js/masks-theater.js create mode 100644 icons-react/icons-js/microwave-off.js create mode 100644 icons-react/icons-js/pointer.js create mode 100644 icons-react/icons-js/rating-12-plus.js create mode 100644 icons-react/icons-js/rating-14-plus.js create mode 100644 icons-react/icons-js/rating-16-plus.js create mode 100644 icons-react/icons-js/rating-18-plus.js create mode 100644 icons-react/icons-js/rating-21-plus.js create mode 100644 icons-react/icons-js/seo.js create mode 100644 icons-react/icons-js/shirt-sport.js create mode 100644 icons-react/icons-js/snowman.js create mode 100644 icons-react/icons-js/uf-off.js create mode 100644 icons-react/icons-js/ufo.js create mode 100644 icons-react/icons-js/zeppelin.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/a-b-2.js b/icons-react/icons-js/a-b-2.js new file mode 100644 index 00000000..5ac6b9a5 --- /dev/null +++ b/icons-react/icons-js/a-b-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAB2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconAB2; \ No newline at end of file diff --git a/icons-react/icons-js/brand-deno.js b/icons-react/icons-js/brand-deno.js index a2b9ae67..dfc260b7 100644 --- a/icons-react/icons-js/brand-deno.js +++ b/icons-react/icons-js/brand-deno.js @@ -6,7 +6,7 @@ function IconBrandDeno({ stroke = 2, ...props }) { - return ; + return ; } export default IconBrandDeno; \ No newline at end of file diff --git a/icons-react/icons-js/brand-fortnite.js b/icons-react/icons-js/brand-fortnite.js new file mode 100644 index 00000000..0ba3fdf1 --- /dev/null +++ b/icons-react/icons-js/brand-fortnite.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandFortnite({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandFortnite; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pepsi.js b/icons-react/icons-js/brand-pepsi.js new file mode 100644 index 00000000..7bf410dd --- /dev/null +++ b/icons-react/icons-js/brand-pepsi.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandPepsi({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandPepsi; \ No newline at end of file diff --git a/icons-react/icons-js/brand-toyota.js b/icons-react/icons-js/brand-toyota.js new file mode 100644 index 00000000..dcca2b34 --- /dev/null +++ b/icons-react/icons-js/brand-toyota.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandToyota({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandToyota; \ No newline at end of file diff --git a/icons-react/icons-js/masks-theater.js b/icons-react/icons-js/masks-theater.js new file mode 100644 index 00000000..bbe233ff --- /dev/null +++ b/icons-react/icons-js/masks-theater.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMasksTheater({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMasksTheater; \ No newline at end of file diff --git a/icons-react/icons-js/microwave-off.js b/icons-react/icons-js/microwave-off.js new file mode 100644 index 00000000..0431d6d5 --- /dev/null +++ b/icons-react/icons-js/microwave-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMicrowaveOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMicrowaveOff; \ No newline at end of file diff --git a/icons-react/icons-js/pointer.js b/icons-react/icons-js/pointer.js new file mode 100644 index 00000000..e7c9efdc --- /dev/null +++ b/icons-react/icons-js/pointer.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPointer({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPointer; \ No newline at end of file diff --git a/icons-react/icons-js/rating-12-plus.js b/icons-react/icons-js/rating-12-plus.js new file mode 100644 index 00000000..2909579c --- /dev/null +++ b/icons-react/icons-js/rating-12-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating12Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRating12Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-14-plus.js b/icons-react/icons-js/rating-14-plus.js new file mode 100644 index 00000000..87c3ec2d --- /dev/null +++ b/icons-react/icons-js/rating-14-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating14Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRating14Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-16-plus.js b/icons-react/icons-js/rating-16-plus.js new file mode 100644 index 00000000..27c8f045 --- /dev/null +++ b/icons-react/icons-js/rating-16-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating16Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRating16Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-18-plus.js b/icons-react/icons-js/rating-18-plus.js new file mode 100644 index 00000000..81bce85c --- /dev/null +++ b/icons-react/icons-js/rating-18-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating18Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRating18Plus; \ No newline at end of file diff --git a/icons-react/icons-js/rating-21-plus.js b/icons-react/icons-js/rating-21-plus.js new file mode 100644 index 00000000..da0c541f --- /dev/null +++ b/icons-react/icons-js/rating-21-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating21Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRating21Plus; \ No newline at end of file diff --git a/icons-react/icons-js/seo.js b/icons-react/icons-js/seo.js new file mode 100644 index 00000000..74f7bc55 --- /dev/null +++ b/icons-react/icons-js/seo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSeo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSeo; \ No newline at end of file diff --git a/icons-react/icons-js/shirt-sport.js b/icons-react/icons-js/shirt-sport.js new file mode 100644 index 00000000..cdd3a84d --- /dev/null +++ b/icons-react/icons-js/shirt-sport.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconShirtSport({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconShirtSport; \ No newline at end of file diff --git a/icons-react/icons-js/snowman.js b/icons-react/icons-js/snowman.js new file mode 100644 index 00000000..b312c05c --- /dev/null +++ b/icons-react/icons-js/snowman.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSnowman({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconSnowman; \ No newline at end of file diff --git a/icons-react/icons-js/uf-off.js b/icons-react/icons-js/uf-off.js new file mode 100644 index 00000000..bc85bc9d --- /dev/null +++ b/icons-react/icons-js/uf-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconUfOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconUfOff; \ No newline at end of file diff --git a/icons-react/icons-js/ufo.js b/icons-react/icons-js/ufo.js new file mode 100644 index 00000000..2eae8268 --- /dev/null +++ b/icons-react/icons-js/ufo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconUfo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconUfo; \ No newline at end of file diff --git a/icons-react/icons-js/zeppelin.js b/icons-react/icons-js/zeppelin.js new file mode 100644 index 00000000..1c405d37 --- /dev/null +++ b/icons-react/icons-js/zeppelin.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconZeppelin({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconZeppelin; \ No newline at end of file -- cgit v1.2.1