diff options
author | codecalm <codecalm@gmail.com> | 2021-12-25 22:43:49 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2021-12-25 22:43:49 +0100 |
commit | cfec9ac6b788951176065c5401db3f3490195557 (patch) | |
tree | 469b9c4063775a86655c806f805c9bc93ad14253 /icons-react | |
parent | 18 new icons: `brand-meta`, `circle-dot`, `clipboard-plus`, `creative-commons... (diff) | |
download | tabler-icons-cfec9ac6b788951176065c5401db3f3490195557.tar.xz |
Release 1.49.0v1.49.0
Diffstat (limited to 'icons-react')
24 files changed, 256 insertions, 4 deletions
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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-meta" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 10.174c1.766 -2.784 3.315 -4.174 4.648 -4.174c2 0 3.263 2.213 4 5.217c.704 2.869 .5 6.783 -2 6.783c-1.114 0 -2.648 -1.565 -4.148 -3.652a27.627 27.627 0 0 1 -2.5 -4.174z" /><path d="M12 10.174c-1.766 -2.784 -3.315 -4.174 -4.648 -4.174c-2 0 -3.263 2.213 -4 5.217c-.704 2.869 -.5 6.783 2 6.783c1.114 0 2.648 -1.565 4.148 -3.652c1 -1.391 1.833 -2.783 2.5 -4.174z" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-circle-dot" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={1} /><circle cx={12} cy={12} r={9} /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clipboard-plus" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2" /><rect x={9} y={3} width={6} height={4} rx={2} /><path d="M10 14h4" /><path d="M12 12v4" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-copyleft" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M9.5 9a3.5 4 0 1 1 0 6" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-copyleft" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M10 9.75a3.016 3.016 0 0 1 4.163 .173a2.993 2.993 0 0 1 0 4.154a3.016 3.016 0 0 1 -4.163 .173" /></svg>; } 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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-copyright" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M14.5 9a3.5 4 0 1 0 0 6" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-copyright" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173" /></svg>; } 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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-creative-commons" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116" /><path d="M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-exclamation-mark" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 19v.01" /><path d="M12 15v-10" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-face-mask" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M5.002 14.5h-.222c-1.535 0 -2.778 -1.12 -2.778 -2.5s1.243 -2.5 2.778 -2.5h.222" /><path d="M19.002 14.5h.222c1.534 0 2.778 -1.12 2.778 -2.5s-1.244 -2.5 -2.778 -2.5h-.222" /><path d="M9 10h6" /><path d="M9 14h6" /><path d="M12.55 18.843l5 -1.429a2 2 0 0 0 1.45 -1.923v-6.981a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-5 1.429a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0z" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-free-rights" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75" /><path d="M12 7v2" /><path d="M12 15v2" /><path d="M6 6l1.5 1.5" /><path d="M16.5 16.5l1.5 1.5" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-git-pull-request-draft" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={6} cy={18} r={2} /><circle cx={6} cy={6} r={2} /><circle cx={18} cy={18} r={2} /><path d="M6 8v8" /><path d="M18 11h.01" /><path d="M18 6h.01" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-heading" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7 12h10" /><path d="M7 4v16" /><path d="M17 4v16" /><path d="M15 20h4" /><path d="M15 4h4" /><path d="M5 20h4" /><path d="M5 4h4" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-heading" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7 12h10" /><path d="M7 5v14" /><path d="M17 5v14" /><path d="M15 19h4" /><path d="M15 5h4" /><path d="M5 19h4" /><path d="M5 5h4" /></svg>; } 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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-kering" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M16 15v-3.5a2.5 2.5 0 1 1 5 0v3.5m0 -2h-5" /><path d="M3 9l3 6l3 -6" /><path d="M9 20l6 -16" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-no-copyright" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M14 9.75a3.016 3.016 0 0 0 -4.163 .173a2.993 2.993 0 0 0 0 4.154a3.016 3.016 0 0 0 4.163 .173" /><path d="M6 6l1.5 1.5" /><path d="M16.5 16.5l1.5 1.5" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-no-creative-commons" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M10.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116" /><path d="M16.5 10.5c-.847 -.71 -2.132 -.658 -2.914 .116a1.928 1.928 0 0 0 0 2.768c.782 .774 2.067 .825 2.914 .116" /><path d="M6 6l1.5 1.5" /><path d="M16.5 16.5l1.5 1.5" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-no-derivatives" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M9 10h6" /><path d="M9 14h6" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-player-eject" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M5 12h14l-7 -8z" /><rect x={5} y={16} width={14} height={4} rx={1} /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-premium-rights" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M13.867 9.75c-.246 -.48 -.708 -.769 -1.2 -.75h-1.334c-.736 0 -1.333 .67 -1.333 1.5c0 .827 .597 1.499 1.333 1.499h1.334c.736 0 1.333 .671 1.333 1.5c0 .828 -.597 1.499 -1.333 1.499h-1.334c-.492 .019 -.954 -.27 -1.2 -.75" /><path d="M12 7v2" /><path d="M12 15v2" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-quote" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M10 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5" /><path d="M19 11h-4a1 1 0 0 1 -1 -1v-3a1 1 0 0 1 1 -1h3a1 1 0 0 1 1 1v6c0 2.667 -1.333 4.333 -4 5" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-refresh-dot" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4" /><path d="M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4" /><circle cx={12} cy={12} r={1} /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-registered" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M9 16v-8h4a2 2 0 0 1 0 4h-4m3 0l3 4" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-registered" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M10 15v-6h2a2 2 0 1 1 0 4h-2" /><path d="M14 15l-2 -2" /></svg>; } 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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-tag-off" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M7.792 7.793a1 1 0 0 0 1.414 1.414" /><path d="M4.88 4.877a2.99 2.99 0 0 0 -.88 2.123v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416 -2.416m2.002 -2.002l.416 -.416a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-2.859" /><path d="M3 3l18 18" /></svg>; +} + +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 <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-tags-off" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6 6h-.975a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834c.028 -.028 .055 -.056 .08 -.085" /><path d="M17.573 18.407l.418 -.418m1.997 -1.997l.419 -.419a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116" /><path d="M6 9h-.01" /><path d="M3 3l18 18" /></svg>; +} + +export default IconTagsOff;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index f4bee6c3..350d9bae 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -281,6 +281,7 @@ export const IconBrandLoom: TablerIcon; export const IconBrandMastercard: TablerIcon; export const IconBrandMedium: TablerIcon; export const IconBrandMessenger: TablerIcon; +export const IconBrandMeta: TablerIcon; export const IconBrandNetbeans: TablerIcon; export const IconBrandNetflix: TablerIcon; export const IconBrandNotion: TablerIcon; @@ -455,6 +456,7 @@ export const IconCircle8: TablerIcon; export const IconCircle9: TablerIcon; export const IconCircleCheck: TablerIcon; export const IconCircleDashed: TablerIcon; +export const IconCircleDot: TablerIcon; export const IconCircleDotted: TablerIcon; export const IconCircleHalfVertical: TablerIcon; export const IconCircleHalf: TablerIcon; @@ -470,6 +472,7 @@ export const IconClearFormatting: TablerIcon; export const IconClick: TablerIcon; export const IconClipboardCheck: TablerIcon; export const IconClipboardList: TablerIcon; +export const IconClipboardPlus: TablerIcon; export const IconClipboardX: TablerIcon; export const IconClipboard: TablerIcon; export const IconClock: TablerIcon; @@ -520,6 +523,7 @@ export const IconCornerUpRightDouble: TablerIcon; export const IconCornerUpRight: TablerIcon; export const IconCpu: TablerIcon; export const IconCrane: TablerIcon; +export const IconCreativeCommons: TablerIcon; export const IconCreditCardOff: TablerIcon; export const IconCreditCard: TablerIcon; export const IconCrop: TablerIcon; @@ -645,6 +649,7 @@ export const IconEqualNot: TablerIcon; export const IconEqual: TablerIcon; export const IconEraser: TablerIcon; export const IconExchange: TablerIcon; +export const IconExclamationMark: TablerIcon; export const IconExposure: TablerIcon; export const IconExternalLink: TablerIcon; export const IconEyeCheck: TablerIcon; @@ -655,6 +660,7 @@ export const IconEyeglass2: TablerIcon; export const IconEyeglass: TablerIcon; export const IconFaceIdError: TablerIcon; export const IconFaceId: TablerIcon; +export const IconFaceMask: TablerIcon; export const IconFall: TablerIcon; export const IconFeather: TablerIcon; export const IconFence: TablerIcon; @@ -725,6 +731,7 @@ export const IconForbid: TablerIcon; export const IconForklift: TablerIcon; export const IconForms: TablerIcon; export const IconFrame: TablerIcon; +export const IconFreeRights: TablerIcon; export const IconFriends: TablerIcon; export const IconGasStation: TablerIcon; export const IconGauge: TablerIcon; @@ -738,6 +745,7 @@ export const IconGitCompare: TablerIcon; export const IconGitFork: TablerIcon; export const IconGitMerge: TablerIcon; export const IconGitPullRequestClosed: TablerIcon; +export const IconGitPullRequestDraft: TablerIcon; export const IconGitPullRequest: TablerIcon; export const IconGlassFull: TablerIcon; export const IconGlassOff: TablerIcon; @@ -805,6 +813,7 @@ export const IconInfoSquare: TablerIcon; export const IconItalic: TablerIcon; export const IconJumpRope: TablerIcon; export const IconKarate: TablerIcon; +export const IconKering: TablerIcon; export const IconKey: TablerIcon; export const IconKeyboardHide: TablerIcon; export const IconKeyboardOff: TablerIcon; @@ -988,6 +997,9 @@ export const IconMusic: TablerIcon; export const IconNewSection: TablerIcon; export const IconNews: TablerIcon; export const IconNfc: TablerIcon; +export const IconNoCopyright: TablerIcon; +export const IconNoCreativeCommons: TablerIcon; +export const IconNoDerivatives: TablerIcon; export const IconNote: TablerIcon; export const IconNotebook: TablerIcon; export const IconNotes: TablerIcon; @@ -1058,6 +1070,7 @@ export const IconPlanet: TablerIcon; export const IconPlant2: TablerIcon; export const IconPlant: TablerIcon; export const IconPlayCard: TablerIcon; +export const IconPlayerEject: TablerIcon; export const IconPlayerPause: TablerIcon; export const IconPlayerPlay: TablerIcon; export const IconPlayerRecord: TablerIcon; @@ -1075,6 +1088,7 @@ export const IconPolaroid: TablerIcon; export const IconPool: TablerIcon; export const IconPower: TablerIcon; export const IconPray: TablerIcon; +export const IconPremiumRights: TablerIcon; export const IconPrescription: TablerIcon; export const IconPresentationAnalytics: TablerIcon; export const IconPresentation: TablerIcon; @@ -1087,6 +1101,7 @@ export const IconPuzzle: TablerIcon; export const IconPyramid: TablerIcon; export const IconQrcode: TablerIcon; export const IconQuestionMark: TablerIcon; +export const IconQuote: TablerIcon; export const IconRadio: TablerIcon; export const IconRadioactive: TablerIcon; export const IconRadiusBottomLeft: TablerIcon; @@ -1105,6 +1120,7 @@ export const IconRectangleVertical: TablerIcon; export const IconRectangle: TablerIcon; export const IconRecycle: TablerIcon; export const IconRefreshAlert: TablerIcon; +export const IconRefreshDot: TablerIcon; export const IconRefresh: TablerIcon; export const IconRegistered: TablerIcon; export const IconRelationManyToMany: TablerIcon; @@ -1275,7 +1291,9 @@ export const IconTableExport: TablerIcon; export const IconTableImport: TablerIcon; export const IconTableOff: TablerIcon; export const IconTable: TablerIcon; +export const IconTagOff: TablerIcon; export const IconTag: TablerIcon; +export const IconTagsOff: TablerIcon; export const IconTags: TablerIcon; export const IconTallymark1: TablerIcon; export const IconTallymark2: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 747fa734..de7bf777 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -275,6 +275,7 @@ export { default as IconBrandLoom } from './icons-js/brand-loom.js'; export { default as IconBrandMastercard } from './icons-js/brand-mastercard.js'; export { default as IconBrandMedium } from './icons-js/brand-medium.js'; export { default as IconBrandMessenger } from './icons-js/brand-messenger.js'; +export { default as IconBrandMeta } from './icons-js/brand-meta.js'; export { default as IconBrandNetbeans } from './icons-js/brand-netbeans.js'; export { default as IconBrandNetflix } from './icons-js/brand-netflix.js'; export { default as IconBrandNotion } from './icons-js/brand-notion.js'; @@ -449,6 +450,7 @@ export { default as IconCircle8 } from './icons-js/circle-8.js'; export { default as IconCircle9 } from './icons-js/circle-9.js'; export { default as IconCircleCheck } from './icons-js/circle-check.js'; export { default as IconCircleDashed } from './icons-js/circle-dashed.js'; +export { default as IconCircleDot } from './icons-js/circle-dot.js'; export { default as IconCircleDotted } from './icons-js/circle-dotted.js'; export { default as IconCircleHalfVertical } from './icons-js/circle-half-vertical.js'; export { default as IconCircleHalf } from './icons-js/circle-half.js'; @@ -464,6 +466,7 @@ export { default as IconClearFormatting } from './icons-js/clear-formatting.js'; export { default as IconClick } from './icons-js/click.js'; export { default as IconClipboardCheck } from './icons-js/clipboard-check.js'; export { default as IconClipboardList } from './icons-js/clipboard-list.js'; +export { default as IconClipboardPlus } from './icons-js/clipboard-plus.js'; export { default as IconClipboardX } from './icons-js/clipboard-x.js'; export { default as IconClipboard } from './icons-js/clipboard.js'; export { default as IconClock } from './icons-js/clock.js'; @@ -514,6 +517,7 @@ export { default as IconCornerUpRightDouble } from './icons-js/corner-up-right-d export { default as IconCornerUpRight } from './icons-js/corner-up-right.js'; export { default as IconCpu } from './icons-js/cpu.js'; export { default as IconCrane } from './icons-js/crane.js'; +export { default as IconCreativeCommons } from './icons-js/creative-commons.js'; export { default as IconCreditCardOff } from './icons-js/credit-card-off.js'; export { default as IconCreditCard } from './icons-js/credit-card.js'; export { default as IconCrop } from './icons-js/crop.js'; @@ -639,6 +643,7 @@ export { default as IconEqualNot } from './icons-js/equal-not.js'; export { default as IconEqual } from './icons-js/equal.js'; export { default as IconEraser } from './icons-js/eraser.js'; export { default as IconExchange } from './icons-js/exchange.js'; +export { default as IconExclamationMark } from './icons-js/exclamation-mark.js'; export { default as IconExposure } from './icons-js/exposure.js'; export { default as IconExternalLink } from './icons-js/external-link.js'; export { default as IconEyeCheck } from './icons-js/eye-check.js'; @@ -649,6 +654,7 @@ export { default as IconEyeglass2 } from './icons-js/eyeglass-2.js'; export { default as IconEyeglass } from './icons-js/eyeglass.js'; export { default as IconFaceIdError } from './icons-js/face-id-error.js'; export { default as IconFaceId } from './icons-js/face-id.js'; +export { default as IconFaceMask } from './icons-js/face-mask.js'; export { default as IconFall } from './icons-js/fall.js'; export { default as IconFeather } from './icons-js/feather.js'; export { default as IconFence } from './icons-js/fence.js'; @@ -719,6 +725,7 @@ export { default as IconForbid } from './icons-js/forbid.js'; export { default as IconForklift } from './icons-js/forklift.js'; export { default as IconForms } from './icons-js/forms.js'; export { default as IconFrame } from './icons-js/frame.js'; +export { default as IconFreeRights } from './icons-js/free-rights.js'; export { default as IconFriends } from './icons-js/friends.js'; export { default as IconGasStation } from './icons-js/gas-station.js'; export { default as IconGauge } from './icons-js/gauge.js'; @@ -732,6 +739,7 @@ export { default as IconGitCompare } from './icons-js/git-compare.js'; export { default as IconGitFork } from './icons-js/git-fork.js'; export { default as IconGitMerge } from './icons-js/git-merge.js'; export { default as IconGitPullRequestClosed } from './icons-js/git-pull-request-closed.js'; +export { default as IconGitPullRequestDraft } from './icons-js/git-pull-request-draft.js'; export { default as IconGitPullRequest } from './icons-js/git-pull-request.js'; export { default as IconGlassFull } from './icons-js/glass-full.js'; export { default as IconGlassOff } from './icons-js/glass-off.js'; @@ -799,6 +807,7 @@ export { default as IconInfoSquare } from './icons-js/info-square.js'; export { default as IconItalic } from './icons-js/italic.js'; export { default as IconJumpRope } from './icons-js/jump-rope.js'; export { default as IconKarate } from './icons-js/karate.js'; +export { default as IconKering } from './icons-js/kering.js'; export { default as IconKey } from './icons-js/key.js'; export { default as IconKeyboardHide } from './icons-js/keyboard-hide.js'; export { default as IconKeyboardOff } from './icons-js/keyboard-off.js'; @@ -982,6 +991,9 @@ export { default as IconMusic } from './icons-js/music.js'; export { default as IconNewSection } from './icons-js/new-section.js'; export { default as IconNews } from './icons-js/news.js'; export { default as IconNfc } from './icons-js/nfc.js'; +export { default as IconNoCopyright } from './icons-js/no-copyright.js'; +export { default as IconNoCreativeCommons } from './icons-js/no-creative-commons.js'; +export { default as IconNoDerivatives } from './icons-js/no-derivatives.js'; export { default as IconNote } from './icons-js/note.js'; export { default as IconNotebook } from './icons-js/notebook.js'; export { default as IconNotes } from './icons-js/notes.js'; @@ -1052,6 +1064,7 @@ export { default as IconPlanet } from './icons-js/planet.js'; export { default as IconPlant2 } from './icons-js/plant-2.js'; export { default as IconPlant } from './icons-js/plant.js'; export { default as IconPlayCard } from './icons-js/play-card.js'; +export { default as IconPlayerEject } from './icons-js/player-eject.js'; export { default as IconPlayerPause } from './icons-js/player-pause.js'; export { default as IconPlayerPlay } from './icons-js/player-play.js'; export { default as IconPlayerRecord } from './icons-js/player-record.js'; @@ -1069,6 +1082,7 @@ export { default as IconPolaroid } from './icons-js/polaroid.js'; export { default as IconPool } from './icons-js/pool.js'; export { default as IconPower } from './icons-js/power.js'; export { default as IconPray } from './icons-js/pray.js'; +export { default as IconPremiumRights } from './icons-js/premium-rights.js'; export { default as IconPrescription } from './icons-js/prescription.js'; export { default as IconPresentationAnalytics } from './icons-js/presentation-analytics.js'; export { default as IconPresentation } from './icons-js/presentation.js'; @@ -1081,6 +1095,7 @@ export { default as IconPuzzle } from './icons-js/puzzle.js'; export { default as IconPyramid } from './icons-js/pyramid.js'; export { default as IconQrcode } from './icons-js/qrcode.js'; export { default as IconQuestionMark } from './icons-js/question-mark.js'; +export { default as IconQuote } from './icons-js/quote.js'; export { default as IconRadio } from './icons-js/radio.js'; export { default as IconRadioactive } from './icons-js/radioactive.js'; export { default as IconRadiusBottomLeft } from './icons-js/radius-bottom-left.js'; @@ -1099,6 +1114,7 @@ export { default as IconRectangleVertical } from './icons-js/rectangle-vertical. export { default as IconRectangle } from './icons-js/rectangle.js'; export { default as IconRecycle } from './icons-js/recycle.js'; export { default as IconRefreshAlert } from './icons-js/refresh-alert.js'; +export { default as IconRefreshDot } from './icons-js/refresh-dot.js'; export { default as IconRefresh } from './icons-js/refresh.js'; export { default as IconRegistered } from './icons-js/registered.js'; export { default as IconRelationManyToMany } from './icons-js/relation-many-to-many.js'; @@ -1269,7 +1285,9 @@ export { default as IconTableExport } from './icons-js/table-export.js'; export { default as IconTableImport } from './icons-js/table-import.js'; export { default as IconTableOff } from './icons-js/table-off.js'; export { default as IconTable } from './icons-js/table.js'; +export { default as IconTagOff } from './icons-js/tag-off.js'; export { default as IconTag } from './icons-js/tag.js'; +export { default as IconTagsOff } from './icons-js/tags-off.js'; export { default as IconTags } from './icons-js/tags.js'; export { default as IconTallymark1 } from './icons-js/tallymark-1.js'; export { default as IconTallymark2 } from './icons-js/tallymark-2.js'; |