aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2021-12-25 22:43:49 +0100
committercodecalm <codecalm@gmail.com>2021-12-25 22:43:49 +0100
commitcfec9ac6b788951176065c5401db3f3490195557 (patch)
tree469b9c4063775a86655c806f805c9bc93ad14253 /icons-react/icons-js
parent18 new icons: `brand-meta`, `circle-dot`, `clipboard-plus`, `creative-commons... (diff)
downloadtabler-icons-cfec9ac6b788951176065c5401db3f3490195557.tar.xz
Release 1.49.0v1.49.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/brand-meta.js12
-rw-r--r--icons-react/icons-js/circle-dot.js12
-rw-r--r--icons-react/icons-js/clipboard-plus.js12
-rw-r--r--icons-react/icons-js/copyleft.js2
-rw-r--r--icons-react/icons-js/copyright.js2
-rw-r--r--icons-react/icons-js/creative-commons.js12
-rw-r--r--icons-react/icons-js/exclamation-mark.js12
-rw-r--r--icons-react/icons-js/face-mask.js12
-rw-r--r--icons-react/icons-js/free-rights.js12
-rw-r--r--icons-react/icons-js/git-pull-request-draft.js12
-rw-r--r--icons-react/icons-js/heading.js2
-rw-r--r--icons-react/icons-js/kering.js12
-rw-r--r--icons-react/icons-js/no-copyright.js12
-rw-r--r--icons-react/icons-js/no-creative-commons.js12
-rw-r--r--icons-react/icons-js/no-derivatives.js12
-rw-r--r--icons-react/icons-js/player-eject.js12
-rw-r--r--icons-react/icons-js/premium-rights.js12
-rw-r--r--icons-react/icons-js/quote.js12
-rw-r--r--icons-react/icons-js/refresh-dot.js12
-rw-r--r--icons-react/icons-js/registered.js2
-rw-r--r--icons-react/icons-js/tag-off.js12
-rw-r--r--icons-react/icons-js/tags-off.js12
22 files changed, 220 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