From 0300fec5e92d49652133659252e978c58773ce7a Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 12 Apr 2022 00:11:08 +0200 Subject: Release 1.64.0 --- icons-react/icons-js/activity-heartbeat.js | 12 ++++++++++++ icons-react/icons-js/antenna-bars-off.js | 2 +- icons-react/icons-js/brand-adobe.js | 12 ++++++++++++ icons-react/icons-js/brand-nextjs.js | 12 ++++++++++++ icons-react/icons-js/brand-nuxt.js | 12 ++++++++++++ icons-react/icons-js/brand-svelte.js | 12 ++++++++++++ icons-react/icons-js/brand-vk.js | 2 +- icons-react/icons-js/brand-vue.js | 12 ++++++++++++ icons-react/icons-js/gender-agender.js | 12 ++++++++++++ icons-react/icons-js/gender-androgyne.js | 12 ++++++++++++ icons-react/icons-js/gender-bigender.js | 12 ++++++++++++ icons-react/icons-js/gender-demiboy.js | 12 ++++++++++++ icons-react/icons-js/gender-demigirl.js | 12 ++++++++++++ icons-react/icons-js/gender-epicene.js | 12 ++++++++++++ icons-react/icons-js/gender-female.js | 12 ++++++++++++ icons-react/icons-js/gender-femme.js | 12 ++++++++++++ icons-react/icons-js/gender-genderfluid.js | 12 ++++++++++++ icons-react/icons-js/gender-genderless.js | 12 ++++++++++++ icons-react/icons-js/gender-genderqueer.js | 12 ++++++++++++ icons-react/icons-js/gender-hermaphrodite.js | 12 ++++++++++++ icons-react/icons-js/gender-intergender.js | 12 ++++++++++++ icons-react/icons-js/gender-male.js | 12 ++++++++++++ icons-react/icons-js/gender-neutrois.js | 12 ++++++++++++ icons-react/icons-js/gender-third.js | 12 ++++++++++++ icons-react/icons-js/gender-transgender.js | 12 ++++++++++++ icons-react/icons-js/gender-trasvesti.js | 12 ++++++++++++ icons-react/icons-js/heart-handshake.js | 12 ++++++++++++ icons-react/icons-js/math-avg.js | 12 ++++++++++++ icons-react/icons-js/math-max.js | 12 ++++++++++++ icons-react/icons-js/math-min.js | 12 ++++++++++++ 30 files changed, 338 insertions(+), 2 deletions(-) create mode 100644 icons-react/icons-js/activity-heartbeat.js create mode 100644 icons-react/icons-js/brand-adobe.js create mode 100644 icons-react/icons-js/brand-nextjs.js create mode 100644 icons-react/icons-js/brand-nuxt.js create mode 100644 icons-react/icons-js/brand-svelte.js create mode 100644 icons-react/icons-js/brand-vue.js create mode 100644 icons-react/icons-js/gender-agender.js create mode 100644 icons-react/icons-js/gender-androgyne.js create mode 100644 icons-react/icons-js/gender-bigender.js create mode 100644 icons-react/icons-js/gender-demiboy.js create mode 100644 icons-react/icons-js/gender-demigirl.js create mode 100644 icons-react/icons-js/gender-epicene.js create mode 100644 icons-react/icons-js/gender-female.js create mode 100644 icons-react/icons-js/gender-femme.js create mode 100644 icons-react/icons-js/gender-genderfluid.js create mode 100644 icons-react/icons-js/gender-genderless.js create mode 100644 icons-react/icons-js/gender-genderqueer.js create mode 100644 icons-react/icons-js/gender-hermaphrodite.js create mode 100644 icons-react/icons-js/gender-intergender.js create mode 100644 icons-react/icons-js/gender-male.js create mode 100644 icons-react/icons-js/gender-neutrois.js create mode 100644 icons-react/icons-js/gender-third.js create mode 100644 icons-react/icons-js/gender-transgender.js create mode 100644 icons-react/icons-js/gender-trasvesti.js create mode 100644 icons-react/icons-js/heart-handshake.js create mode 100644 icons-react/icons-js/math-avg.js create mode 100644 icons-react/icons-js/math-max.js create mode 100644 icons-react/icons-js/math-min.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/activity-heartbeat.js b/icons-react/icons-js/activity-heartbeat.js new file mode 100644 index 00000000..2fc4822b --- /dev/null +++ b/icons-react/icons-js/activity-heartbeat.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconActivityHeartbeat({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconActivityHeartbeat; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-off.js b/icons-react/icons-js/antenna-bars-off.js index ff510a3c..5d46cf9b 100644 --- a/icons-react/icons-js/antenna-bars-off.js +++ b/icons-react/icons-js/antenna-bars-off.js @@ -6,7 +6,7 @@ function IconAntennaBarsOff({ stroke = 2, ...props }) { - return ; + return ; } export default IconAntennaBarsOff; \ No newline at end of file diff --git a/icons-react/icons-js/brand-adobe.js b/icons-react/icons-js/brand-adobe.js new file mode 100644 index 00000000..911cea1d --- /dev/null +++ b/icons-react/icons-js/brand-adobe.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandAdobe({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandAdobe; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nextjs.js b/icons-react/icons-js/brand-nextjs.js new file mode 100644 index 00000000..c7025236 --- /dev/null +++ b/icons-react/icons-js/brand-nextjs.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandNextjs({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandNextjs; \ No newline at end of file diff --git a/icons-react/icons-js/brand-nuxt.js b/icons-react/icons-js/brand-nuxt.js new file mode 100644 index 00000000..548b57ae --- /dev/null +++ b/icons-react/icons-js/brand-nuxt.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandNuxt({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandNuxt; \ No newline at end of file diff --git a/icons-react/icons-js/brand-svelte.js b/icons-react/icons-js/brand-svelte.js new file mode 100644 index 00000000..8cd5d92a --- /dev/null +++ b/icons-react/icons-js/brand-svelte.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandSvelte({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandSvelte; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vk.js b/icons-react/icons-js/brand-vk.js index 0fb6ced4..24abb3f3 100644 --- a/icons-react/icons-js/brand-vk.js +++ b/icons-react/icons-js/brand-vk.js @@ -6,7 +6,7 @@ function IconBrandVk({ stroke = 2, ...props }) { - return ; + return ; } export default IconBrandVk; \ No newline at end of file diff --git a/icons-react/icons-js/brand-vue.js b/icons-react/icons-js/brand-vue.js new file mode 100644 index 00000000..3ac72597 --- /dev/null +++ b/icons-react/icons-js/brand-vue.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandVue({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandVue; \ No newline at end of file diff --git a/icons-react/icons-js/gender-agender.js b/icons-react/icons-js/gender-agender.js new file mode 100644 index 00000000..fd26d7e6 --- /dev/null +++ b/icons-react/icons-js/gender-agender.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderAgender({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderAgender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-androgyne.js b/icons-react/icons-js/gender-androgyne.js new file mode 100644 index 00000000..da38012c --- /dev/null +++ b/icons-react/icons-js/gender-androgyne.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderAndrogyne({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderAndrogyne; \ No newline at end of file diff --git a/icons-react/icons-js/gender-bigender.js b/icons-react/icons-js/gender-bigender.js new file mode 100644 index 00000000..61006925 --- /dev/null +++ b/icons-react/icons-js/gender-bigender.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderBigender({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderBigender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-demiboy.js b/icons-react/icons-js/gender-demiboy.js new file mode 100644 index 00000000..b294b640 --- /dev/null +++ b/icons-react/icons-js/gender-demiboy.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderDemiboy({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderDemiboy; \ No newline at end of file diff --git a/icons-react/icons-js/gender-demigirl.js b/icons-react/icons-js/gender-demigirl.js new file mode 100644 index 00000000..0146c115 --- /dev/null +++ b/icons-react/icons-js/gender-demigirl.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderDemigirl({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderDemigirl; \ No newline at end of file diff --git a/icons-react/icons-js/gender-epicene.js b/icons-react/icons-js/gender-epicene.js new file mode 100644 index 00000000..e17f2d5c --- /dev/null +++ b/icons-react/icons-js/gender-epicene.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderEpicene({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderEpicene; \ No newline at end of file diff --git a/icons-react/icons-js/gender-female.js b/icons-react/icons-js/gender-female.js new file mode 100644 index 00000000..f0f6bb21 --- /dev/null +++ b/icons-react/icons-js/gender-female.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderFemale({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderFemale; \ No newline at end of file diff --git a/icons-react/icons-js/gender-femme.js b/icons-react/icons-js/gender-femme.js new file mode 100644 index 00000000..2d1d0dbd --- /dev/null +++ b/icons-react/icons-js/gender-femme.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderFemme({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderFemme; \ No newline at end of file diff --git a/icons-react/icons-js/gender-genderfluid.js b/icons-react/icons-js/gender-genderfluid.js new file mode 100644 index 00000000..523670df --- /dev/null +++ b/icons-react/icons-js/gender-genderfluid.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderGenderfluid({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderGenderfluid; \ No newline at end of file diff --git a/icons-react/icons-js/gender-genderless.js b/icons-react/icons-js/gender-genderless.js new file mode 100644 index 00000000..ab39c4a7 --- /dev/null +++ b/icons-react/icons-js/gender-genderless.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderGenderless({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderGenderless; \ No newline at end of file diff --git a/icons-react/icons-js/gender-genderqueer.js b/icons-react/icons-js/gender-genderqueer.js new file mode 100644 index 00000000..b7952c24 --- /dev/null +++ b/icons-react/icons-js/gender-genderqueer.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderGenderqueer({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderGenderqueer; \ No newline at end of file diff --git a/icons-react/icons-js/gender-hermaphrodite.js b/icons-react/icons-js/gender-hermaphrodite.js new file mode 100644 index 00000000..46988b2d --- /dev/null +++ b/icons-react/icons-js/gender-hermaphrodite.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderHermaphrodite({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderHermaphrodite; \ No newline at end of file diff --git a/icons-react/icons-js/gender-intergender.js b/icons-react/icons-js/gender-intergender.js new file mode 100644 index 00000000..33873e95 --- /dev/null +++ b/icons-react/icons-js/gender-intergender.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderIntergender({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderIntergender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-male.js b/icons-react/icons-js/gender-male.js new file mode 100644 index 00000000..9964fef7 --- /dev/null +++ b/icons-react/icons-js/gender-male.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderMale({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderMale; \ No newline at end of file diff --git a/icons-react/icons-js/gender-neutrois.js b/icons-react/icons-js/gender-neutrois.js new file mode 100644 index 00000000..f49782d3 --- /dev/null +++ b/icons-react/icons-js/gender-neutrois.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderNeutrois({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderNeutrois; \ No newline at end of file diff --git a/icons-react/icons-js/gender-third.js b/icons-react/icons-js/gender-third.js new file mode 100644 index 00000000..73ea0fcb --- /dev/null +++ b/icons-react/icons-js/gender-third.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderThird({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderThird; \ No newline at end of file diff --git a/icons-react/icons-js/gender-transgender.js b/icons-react/icons-js/gender-transgender.js new file mode 100644 index 00000000..35593e67 --- /dev/null +++ b/icons-react/icons-js/gender-transgender.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderTransgender({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderTransgender; \ No newline at end of file diff --git a/icons-react/icons-js/gender-trasvesti.js b/icons-react/icons-js/gender-trasvesti.js new file mode 100644 index 00000000..c0019fb8 --- /dev/null +++ b/icons-react/icons-js/gender-trasvesti.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGenderTrasvesti({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGenderTrasvesti; \ No newline at end of file diff --git a/icons-react/icons-js/heart-handshake.js b/icons-react/icons-js/heart-handshake.js new file mode 100644 index 00000000..d0e84249 --- /dev/null +++ b/icons-react/icons-js/heart-handshake.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHeartHandshake({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconHeartHandshake; \ No newline at end of file diff --git a/icons-react/icons-js/math-avg.js b/icons-react/icons-js/math-avg.js new file mode 100644 index 00000000..d93a148c --- /dev/null +++ b/icons-react/icons-js/math-avg.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMathAvg({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMathAvg; \ No newline at end of file diff --git a/icons-react/icons-js/math-max.js b/icons-react/icons-js/math-max.js new file mode 100644 index 00000000..61d176fa --- /dev/null +++ b/icons-react/icons-js/math-max.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMathMax({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMathMax; \ No newline at end of file diff --git a/icons-react/icons-js/math-min.js b/icons-react/icons-js/math-min.js new file mode 100644 index 00000000..57ba8292 --- /dev/null +++ b/icons-react/icons-js/math-min.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMathMin({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconMathMin; \ No newline at end of file -- cgit v1.2.1