From cfec9ac6b788951176065c5401db3f3490195557 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 25 Dec 2021 22:43:49 +0100 Subject: Release 1.49.0 --- icons-react/icons-js/brand-meta.js | 12 ++++++++++++ icons-react/icons-js/circle-dot.js | 12 ++++++++++++ icons-react/icons-js/clipboard-plus.js | 12 ++++++++++++ icons-react/icons-js/copyleft.js | 2 +- icons-react/icons-js/copyright.js | 2 +- icons-react/icons-js/creative-commons.js | 12 ++++++++++++ icons-react/icons-js/exclamation-mark.js | 12 ++++++++++++ icons-react/icons-js/face-mask.js | 12 ++++++++++++ icons-react/icons-js/free-rights.js | 12 ++++++++++++ icons-react/icons-js/git-pull-request-draft.js | 12 ++++++++++++ icons-react/icons-js/heading.js | 2 +- icons-react/icons-js/kering.js | 12 ++++++++++++ icons-react/icons-js/no-copyright.js | 12 ++++++++++++ icons-react/icons-js/no-creative-commons.js | 12 ++++++++++++ icons-react/icons-js/no-derivatives.js | 12 ++++++++++++ icons-react/icons-js/player-eject.js | 12 ++++++++++++ icons-react/icons-js/premium-rights.js | 12 ++++++++++++ icons-react/icons-js/quote.js | 12 ++++++++++++ icons-react/icons-js/refresh-dot.js | 12 ++++++++++++ icons-react/icons-js/registered.js | 2 +- icons-react/icons-js/tag-off.js | 12 ++++++++++++ icons-react/icons-js/tags-off.js | 12 ++++++++++++ 22 files changed, 220 insertions(+), 4 deletions(-) create mode 100644 icons-react/icons-js/brand-meta.js create mode 100644 icons-react/icons-js/circle-dot.js create mode 100644 icons-react/icons-js/clipboard-plus.js create mode 100644 icons-react/icons-js/creative-commons.js create mode 100644 icons-react/icons-js/exclamation-mark.js create mode 100644 icons-react/icons-js/face-mask.js create mode 100644 icons-react/icons-js/free-rights.js create mode 100644 icons-react/icons-js/git-pull-request-draft.js create mode 100644 icons-react/icons-js/kering.js create mode 100644 icons-react/icons-js/no-copyright.js create mode 100644 icons-react/icons-js/no-creative-commons.js create mode 100644 icons-react/icons-js/no-derivatives.js create mode 100644 icons-react/icons-js/player-eject.js create mode 100644 icons-react/icons-js/premium-rights.js create mode 100644 icons-react/icons-js/quote.js create mode 100644 icons-react/icons-js/refresh-dot.js create mode 100644 icons-react/icons-js/tag-off.js create mode 100644 icons-react/icons-js/tags-off.js (limited to 'icons-react/icons-js') diff --git a/icons-react/icons-js/brand-meta.js b/icons-react/icons-js/brand-meta.js new file mode 100644 index 00000000..f091407e --- /dev/null +++ b/icons-react/icons-js/brand-meta.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandMeta({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconBrandMeta; \ No newline at end of file diff --git a/icons-react/icons-js/circle-dot.js b/icons-react/icons-js/circle-dot.js new file mode 100644 index 00000000..1f8a92e8 --- /dev/null +++ b/icons-react/icons-js/circle-dot.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCircleDot({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCircleDot; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-plus.js b/icons-react/icons-js/clipboard-plus.js new file mode 100644 index 00000000..c5b25ea0 --- /dev/null +++ b/icons-react/icons-js/clipboard-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconClipboardPlus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconClipboardPlus; \ No newline at end of file diff --git a/icons-react/icons-js/copyleft.js b/icons-react/icons-js/copyleft.js index adea548b..a1815938 100644 --- a/icons-react/icons-js/copyleft.js +++ b/icons-react/icons-js/copyleft.js @@ -6,7 +6,7 @@ function IconCopyleft({ stroke = 2, ...props }) { - return ; + return ; } export default IconCopyleft; \ No newline at end of file diff --git a/icons-react/icons-js/copyright.js b/icons-react/icons-js/copyright.js index 60cc19c2..2e0d1d2a 100644 --- a/icons-react/icons-js/copyright.js +++ b/icons-react/icons-js/copyright.js @@ -6,7 +6,7 @@ function IconCopyright({ stroke = 2, ...props }) { - return ; + return ; } export default IconCopyright; \ No newline at end of file diff --git a/icons-react/icons-js/creative-commons.js b/icons-react/icons-js/creative-commons.js new file mode 100644 index 00000000..071d63ea --- /dev/null +++ b/icons-react/icons-js/creative-commons.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCreativeCommons({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconCreativeCommons; \ No newline at end of file diff --git a/icons-react/icons-js/exclamation-mark.js b/icons-react/icons-js/exclamation-mark.js new file mode 100644 index 00000000..7e2f1368 --- /dev/null +++ b/icons-react/icons-js/exclamation-mark.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconExclamationMark({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconExclamationMark; \ No newline at end of file diff --git a/icons-react/icons-js/face-mask.js b/icons-react/icons-js/face-mask.js new file mode 100644 index 00000000..81833c8d --- /dev/null +++ b/icons-react/icons-js/face-mask.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFaceMask({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconFaceMask; \ No newline at end of file diff --git a/icons-react/icons-js/free-rights.js b/icons-react/icons-js/free-rights.js new file mode 100644 index 00000000..88f6ae75 --- /dev/null +++ b/icons-react/icons-js/free-rights.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFreeRights({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconFreeRights; \ No newline at end of file diff --git a/icons-react/icons-js/git-pull-request-draft.js b/icons-react/icons-js/git-pull-request-draft.js new file mode 100644 index 00000000..4f0d959a --- /dev/null +++ b/icons-react/icons-js/git-pull-request-draft.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGitPullRequestDraft({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconGitPullRequestDraft; \ No newline at end of file diff --git a/icons-react/icons-js/heading.js b/icons-react/icons-js/heading.js index 2e65aef8..1ea4cafc 100644 --- a/icons-react/icons-js/heading.js +++ b/icons-react/icons-js/heading.js @@ -6,7 +6,7 @@ function IconHeading({ stroke = 2, ...props }) { - return ; + return ; } export default IconHeading; \ No newline at end of file diff --git a/icons-react/icons-js/kering.js b/icons-react/icons-js/kering.js new file mode 100644 index 00000000..03e994ab --- /dev/null +++ b/icons-react/icons-js/kering.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconKering({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconKering; \ No newline at end of file diff --git a/icons-react/icons-js/no-copyright.js b/icons-react/icons-js/no-copyright.js new file mode 100644 index 00000000..407d3eec --- /dev/null +++ b/icons-react/icons-js/no-copyright.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNoCopyright({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconNoCopyright; \ No newline at end of file diff --git a/icons-react/icons-js/no-creative-commons.js b/icons-react/icons-js/no-creative-commons.js new file mode 100644 index 00000000..86ac8dcd --- /dev/null +++ b/icons-react/icons-js/no-creative-commons.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNoCreativeCommons({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconNoCreativeCommons; \ No newline at end of file diff --git a/icons-react/icons-js/no-derivatives.js b/icons-react/icons-js/no-derivatives.js new file mode 100644 index 00000000..a5a30af9 --- /dev/null +++ b/icons-react/icons-js/no-derivatives.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNoDerivatives({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconNoDerivatives; \ No newline at end of file diff --git a/icons-react/icons-js/player-eject.js b/icons-react/icons-js/player-eject.js new file mode 100644 index 00000000..2b9e78b2 --- /dev/null +++ b/icons-react/icons-js/player-eject.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlayerEject({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPlayerEject; \ No newline at end of file diff --git a/icons-react/icons-js/premium-rights.js b/icons-react/icons-js/premium-rights.js new file mode 100644 index 00000000..ca506794 --- /dev/null +++ b/icons-react/icons-js/premium-rights.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPremiumRights({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconPremiumRights; \ No newline at end of file diff --git a/icons-react/icons-js/quote.js b/icons-react/icons-js/quote.js new file mode 100644 index 00000000..5e0ecf81 --- /dev/null +++ b/icons-react/icons-js/quote.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconQuote({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconQuote; \ No newline at end of file diff --git a/icons-react/icons-js/refresh-dot.js b/icons-react/icons-js/refresh-dot.js new file mode 100644 index 00000000..0626be4d --- /dev/null +++ b/icons-react/icons-js/refresh-dot.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRefreshDot({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconRefreshDot; \ No newline at end of file diff --git a/icons-react/icons-js/registered.js b/icons-react/icons-js/registered.js index cdc378af..30450d04 100644 --- a/icons-react/icons-js/registered.js +++ b/icons-react/icons-js/registered.js @@ -6,7 +6,7 @@ function IconRegistered({ stroke = 2, ...props }) { - return ; + return ; } export default IconRegistered; \ No newline at end of file diff --git a/icons-react/icons-js/tag-off.js b/icons-react/icons-js/tag-off.js new file mode 100644 index 00000000..a0021c31 --- /dev/null +++ b/icons-react/icons-js/tag-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTagOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconTagOff; \ No newline at end of file diff --git a/icons-react/icons-js/tags-off.js b/icons-react/icons-js/tags-off.js new file mode 100644 index 00000000..f1d3aaaa --- /dev/null +++ b/icons-react/icons-js/tags-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTagsOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return ; +} + +export default IconTagsOff; \ No newline at end of file -- cgit v1.2.1