aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-03-27 16:40:54 +0200
committercodecalm <codecalm@gmail.com>2022-03-27 16:40:54 +0200
commit038417e1873bb66c3de2e340222b7cb81da869f9 (patch)
treee2898b058c2fe3de3361f501723dab6a5c8361dd /icons-react/icons-js
parent18 new icons: `ballpen`, `barell`, `book-download`, `book-upload`, `brand-mer... (diff)
downloadtabler-icons-038417e1873bb66c3de2e340222b7cb81da869f9.tar.xz
Release 1.59.0v1.59.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r--icons-react/icons-js/ballpen.js12
-rw-r--r--icons-react/icons-js/barell.js12
-rw-r--r--icons-react/icons-js/book-download.js12
-rw-r--r--icons-react/icons-js/book-upload.js12
-rw-r--r--icons-react/icons-js/brand-mercedes.js12
-rw-r--r--icons-react/icons-js/certificate-2.js12
-rw-r--r--icons-react/icons-js/checklist.js12
-rw-r--r--icons-react/icons-js/cpu-2.js12
-rw-r--r--icons-react/icons-js/id-badge-2.js12
-rw-r--r--icons-react/icons-js/message-2-share.js12
-rw-r--r--icons-react/icons-js/message-share.js12
-rw-r--r--icons-react/icons-js/military-award.js12
-rw-r--r--icons-react/icons-js/packge-export.js12
-rw-r--r--icons-react/icons-js/packge-import.js12
-rw-r--r--icons-react/icons-js/server-2.js12
-rw-r--r--icons-react/icons-js/telescope.js12
-rw-r--r--icons-react/icons-js/test-pipe.js2
-rw-r--r--icons-react/icons-js/tie.js12
-rw-r--r--icons-react/icons-js/zoom-code.js12
-rw-r--r--icons-react/icons-js/zoom-exclamation.js12
20 files changed, 229 insertions, 1 deletions
diff --git a/icons-react/icons-js/ballpen.js b/icons-react/icons-js/ballpen.js
new file mode 100644
index 00000000..01430bd3
--- /dev/null
+++ b/icons-react/icons-js/ballpen.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBallpen({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ballpen" 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="M14 6l7 7l-4 4" /><path d="M5.828 18.172a2.828 2.828 0 0 0 4 0l10.586 -10.586a2 2 0 0 0 0 -2.829l-1.171 -1.171a2 2 0 0 0 -2.829 0l-10.586 10.586a2.828 2.828 0 0 0 0 4z" /><path d="M4 20l1.768 -1.768" /></svg>;
+}
+
+export default IconBallpen; \ No newline at end of file
diff --git a/icons-react/icons-js/barell.js b/icons-react/icons-js/barell.js
new file mode 100644
index 00000000..3cb84f3f
--- /dev/null
+++ b/icons-react/icons-js/barell.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBarell({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-barell" 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.222 4h11.556c1.481 2.37 2.222 5.037 2.222 8s-.74 5.63 -2.222 8h-11.556c-1.481 -2.37 -2.222 -5.037 -2.222 -8s.74 -5.63 2.222 -8z" /><path d="M15 4c.667 2.667 1 5.333 1 8s-.333 5.333 -1 8" /><path d="M9 4c-.667 2.667 -1 5.333 -1 8s.333 5.333 1 8" /><path d="M4.5 16h15" /><path d="M19.5 8h-15" /></svg>;
+}
+
+export default IconBarell; \ No newline at end of file
diff --git a/icons-react/icons-js/book-download.js b/icons-react/icons-js/book-download.js
new file mode 100644
index 00000000..12769ab2
--- /dev/null
+++ b/icons-react/icons-js/book-download.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBookDownload({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-book-download" 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 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5" /><path d="M13 16h-7a2 2 0 0 0 -2 2" /><path d="M15 19l3 3l3 -3" /><path d="M18 22v-9" /></svg>;
+}
+
+export default IconBookDownload; \ No newline at end of file
diff --git a/icons-react/icons-js/book-upload.js b/icons-react/icons-js/book-upload.js
new file mode 100644
index 00000000..cab9ae7f
--- /dev/null
+++ b/icons-react/icons-js/book-upload.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBookUpload({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-book-upload" 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="M14 20h-8a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5" /><path d="M11 16h-5a2 2 0 0 0 -2 2" /><path d="M15 16l3 -3l3 3" /><path d="M18 13v9" /></svg>;
+}
+
+export default IconBookUpload; \ No newline at end of file
diff --git a/icons-react/icons-js/brand-mercedes.js b/icons-react/icons-js/brand-mercedes.js
new file mode 100644
index 00000000..5517929d
--- /dev/null
+++ b/icons-react/icons-js/brand-mercedes.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconBrandMercedes({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-mercedes" 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="M12 3v9" /><path d="M12 12l7 5" /><path d="M12 12l-7 5" /></svg>;
+}
+
+export default IconBrandMercedes; \ No newline at end of file
diff --git a/icons-react/icons-js/certificate-2.js b/icons-react/icons-js/certificate-2.js
new file mode 100644
index 00000000..23ad202f
--- /dev/null
+++ b/icons-react/icons-js/certificate-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCertificate2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-certificate-2" 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={15} r={3} /><path d="M10 7h4" /><path d="M10 18v4l2 -1l2 1v-4" /><path d="M10 19h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2" /></svg>;
+}
+
+export default IconCertificate2; \ No newline at end of file
diff --git a/icons-react/icons-js/checklist.js b/icons-react/icons-js/checklist.js
new file mode 100644
index 00000000..635a14f9
--- /dev/null
+++ b/icons-react/icons-js/checklist.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconChecklist({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-checklist" 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.615 20h-2.615a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8" /><path d="M14 19l2 2l4 -4" /><path d="M9 8h4" /><path d="M9 12h2" /></svg>;
+}
+
+export default IconChecklist; \ No newline at end of file
diff --git a/icons-react/icons-js/cpu-2.js b/icons-react/icons-js/cpu-2.js
new file mode 100644
index 00000000..734e60e9
--- /dev/null
+++ b/icons-react/icons-js/cpu-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconCpu2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cpu-2" 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" /><rect x={5} y={5} width={14} height={14} rx={1} /><path d="M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2" /><path d="M3 10h2" /><path d="M3 14h2" /><path d="M10 3v2" /><path d="M14 3v2" /><path d="M21 10h-2" /><path d="M21 14h-2" /><path d="M14 21v-2" /><path d="M10 21v-2" /></svg>;
+}
+
+export default IconCpu2; \ No newline at end of file
diff --git a/icons-react/icons-js/id-badge-2.js b/icons-react/icons-js/id-badge-2.js
new file mode 100644
index 00000000..5aada2fc
--- /dev/null
+++ b/icons-react/icons-js/id-badge-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconIdBadge2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-id-badge-2" 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 12h3v4h-3z" /><path d="M10 6h-6a1 1 0 0 0 -1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1 -1v-12a1 1 0 0 0 -1 -1h-6" /><rect x={10} y={3} width={4} height={5} rx={1} /><path d="M14 16h2" /><path d="M14 12h4" /></svg>;
+}
+
+export default IconIdBadge2; \ No newline at end of file
diff --git a/icons-react/icons-js/message-2-share.js b/icons-react/icons-js/message-2-share.js
new file mode 100644
index 00000000..7dad8481
--- /dev/null
+++ b/icons-react/icons-js/message-2-share.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMessage2Share({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-2-share" 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="M17 4h4v4" /><path d="M20 11v3a3 3 0 0 1 -3 3h-2l-3 3l-3 -3h-2a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3h7" /><path d="M16 9l5 -5" /></svg>;
+}
+
+export default IconMessage2Share; \ No newline at end of file
diff --git a/icons-react/icons-js/message-share.js b/icons-react/icons-js/message-share.js
new file mode 100644
index 00000000..74455c0e
--- /dev/null
+++ b/icons-react/icons-js/message-share.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMessageShare({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-share" 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 11v3a3 3 0 0 1 -3 3h-9l-4 4v-13a3 3 0 0 1 3 -3h7" /><path d="M17 4h4v4" /><path d="M16 9l5 -5" /></svg>;
+}
+
+export default IconMessageShare; \ No newline at end of file
diff --git a/icons-react/icons-js/military-award.js b/icons-react/icons-js/military-award.js
new file mode 100644
index 00000000..025a0a00
--- /dev/null
+++ b/icons-react/icons-js/military-award.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconMilitaryAward({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-military-award" 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={13} r={4} /><path d="M9 10l-1 -2h-5l2.48 5.788a2 2 0 0 0 1.84 1.212h1.18" /><path d="M15 10l1 -2h5l-2.48 5.788a2 2 0 0 1 -1.84 1.212h-1.18" /></svg>;
+}
+
+export default IconMilitaryAward; \ No newline at end of file
diff --git a/icons-react/icons-js/packge-export.js b/icons-react/icons-js/packge-export.js
new file mode 100644
index 00000000..4978acaf
--- /dev/null
+++ b/icons-react/icons-js/packge-export.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPackgeExport({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-packge-export" 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 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5" /><path d="M12 12l8 -4.5" /><path d="M12 12v9" /><path d="M12 12l-8 -4.5" /><path d="M15 18h7" /><path d="M19 15l3 3l-3 3" /></svg>;
+}
+
+export default IconPackgeExport; \ No newline at end of file
diff --git a/icons-react/icons-js/packge-import.js b/icons-react/icons-js/packge-import.js
new file mode 100644
index 00000000..7a509e63
--- /dev/null
+++ b/icons-react/icons-js/packge-import.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconPackgeImport({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-packge-import" 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 21l-8 -4.5v-9l8 -4.5l8 4.5v4.5" /><path d="M12 12l8 -4.5" /><path d="M12 12v9" /><path d="M12 12l-8 -4.5" /><path d="M22 18h-7" /><path d="M18 15l-3 3l3 3" /></svg>;
+}
+
+export default IconPackgeImport; \ No newline at end of file
diff --git a/icons-react/icons-js/server-2.js b/icons-react/icons-js/server-2.js
new file mode 100644
index 00000000..40ea8e12
--- /dev/null
+++ b/icons-react/icons-js/server-2.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconServer2({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-server-2" 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" /><rect x={3} y={4} width={18} height={8} rx={3} /><rect x={3} y={12} width={18} height={8} rx={3} /><line x1={7} y1={8} x2={7} y2={8.01} /><line x1={7} y1={16} x2={7} y2={16.01} /><path d="M11 8h6" /><path d="M11 16h6" /></svg>;
+}
+
+export default IconServer2; \ No newline at end of file
diff --git a/icons-react/icons-js/telescope.js b/icons-react/icons-js/telescope.js
new file mode 100644
index 00000000..ac808e01
--- /dev/null
+++ b/icons-react/icons-js/telescope.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTelescope({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-telescope" 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 21l6 -5l6 5" /><path d="M12 13v8" /><path d="M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z" /><path d="M14 5l3 5.5" /></svg>;
+}
+
+export default IconTelescope; \ No newline at end of file
diff --git a/icons-react/icons-js/test-pipe.js b/icons-react/icons-js/test-pipe.js
index 01a687ed..693481a7 100644
--- a/icons-react/icons-js/test-pipe.js
+++ b/icons-react/icons-js/test-pipe.js
@@ -6,7 +6,7 @@ function IconTestPipe({
stroke = 2,
...props
}) {
- return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-test-pipe" 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 4l3 3l-12.35 12.35a1.5 1.5 0 0 1 -3 -3l12.35 -12.35" /><line x1={10} y1={10} x2={16} y2={10} /><path d="M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6" /></svg>;
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-test-pipe" 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 8.04l-12.122 12.124a2.857 2.857 0 1 1 -4.041 -4.04l12.122 -12.124" /><path d="M7 13h8" /><path d="M19 15l1.5 1.6a2 2 0 1 1 -3 0l1.5 -1.6z" /><path d="M15 3l6 6" /></svg>;
}
export default IconTestPipe; \ No newline at end of file
diff --git a/icons-react/icons-js/tie.js b/icons-react/icons-js/tie.js
new file mode 100644
index 00000000..63ee05bc
--- /dev/null
+++ b/icons-react/icons-js/tie.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconTie({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-tie" 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 22l4 -4l-2.5 -11l.993 -2.649a1 1 0 0 0 -.936 -1.351h-3.114a1 1 0 0 0 -.936 1.351l.993 2.649l-2.5 11l4 4z" /><path d="M10.5 7h3l5 5.5" /></svg>;
+}
+
+export default IconTie; \ No newline at end of file
diff --git a/icons-react/icons-js/zoom-code.js b/icons-react/icons-js/zoom-code.js
new file mode 100644
index 00000000..728ab685
--- /dev/null
+++ b/icons-react/icons-js/zoom-code.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconZoomCode({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zoom-code" 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={10} cy={10} r={7} /><path d="M21 21l-6 -6" /><path d="M8 8l-2 2l2 2" /><path d="M12 8l2 2l-2 2" /></svg>;
+}
+
+export default IconZoomCode; \ No newline at end of file
diff --git a/icons-react/icons-js/zoom-exclamation.js b/icons-react/icons-js/zoom-exclamation.js
new file mode 100644
index 00000000..63be048f
--- /dev/null
+++ b/icons-react/icons-js/zoom-exclamation.js
@@ -0,0 +1,12 @@
+import * as React from "react";
+
+function IconZoomExclamation({
+ size = 24,
+ color = "currentColor",
+ stroke = 2,
+ ...props
+}) {
+ return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zoom-exclamation" 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={10} cy={10} r={7} /><path d="M21 21l-6 -6" /><path d="M10 13v.01" /><path d="M10 7v3" /></svg>;
+}
+
+export default IconZoomExclamation; \ No newline at end of file