diff options
author | codecalm <codecalm@gmail.com> | 2022-07-16 08:47:16 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2022-07-16 08:47:16 +0200 |
commit | 132842cb153820037bb7fa695655f6606e0f14e7 (patch) | |
tree | b79693ab85b9d7bb7fff0cbc13287824072a3a09 /icons-react/icons-js | |
parent | 18 new icons: `a-b-2`, `brand-fortnite`, `brand-pepsi`, `brand-toyota`, `mask... (diff) | |
download | tabler-icons-132842cb153820037bb7fa695655f6606e0f14e7.tar.xz |
Release 1.76.0v1.76.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r-- | icons-react/icons-js/a-b-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/brand-deno.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/brand-fortnite.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/brand-pepsi.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/brand-toyota.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/masks-theater.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/microwave-off.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/pointer.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/rating-12-plus.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/rating-14-plus.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/rating-16-plus.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/rating-18-plus.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/rating-21-plus.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/seo.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/shirt-sport.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/snowman.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/uf-off.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/ufo.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/zeppelin.js | 12 |
19 files changed, 217 insertions, 1 deletions
diff --git a/icons-react/icons-js/a-b-2.js b/icons-react/icons-js/a-b-2.js new file mode 100644 index 00000000..5ac6b9a5 --- /dev/null +++ b/icons-react/icons-js/a-b-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconAB2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-a-b-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="M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z" /><path d="M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z" /><path d="M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4" /><path d="M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9" /><path d="M8 7h-4" /></svg>; +} + +export default IconAB2;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-deno.js b/icons-react/icons-js/brand-deno.js index a2b9ae67..dfc260b7 100644 --- a/icons-react/icons-js/brand-deno.js +++ b/icons-react/icons-js/brand-deno.js @@ -6,7 +6,7 @@ function IconBrandDeno({ stroke = 2, ...props }) { - return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-deno" 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.5 21l-1.5 -6c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5" /><path d="M12 11h.01" /></svg>; + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-deno" 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.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5" /><path d="M12 11h.01" /></svg>; } export default IconBrandDeno;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-fortnite.js b/icons-react/icons-js/brand-fortnite.js new file mode 100644 index 00000000..0ba3fdf1 --- /dev/null +++ b/icons-react/icons-js/brand-fortnite.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandFortnite({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-fortnite" 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="M8 3h7.5l-.5 4h-3v3h3v3.5h-3v6.5l-4 1z" /></svg>; +} + +export default IconBrandFortnite;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-pepsi.js b/icons-react/icons-js/brand-pepsi.js new file mode 100644 index 00000000..7bf410dd --- /dev/null +++ b/icons-react/icons-js/brand-pepsi.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandPepsi({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-pepsi" 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="M4 16c5.713 -2.973 11 -3.5 13.449 -11.162" /><path d="M5 17.5c5.118 -2.859 15 0 14 -11" /></svg>; +} + +export default IconBrandPepsi;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-toyota.js b/icons-react/icons-js/brand-toyota.js new file mode 100644 index 00000000..dcca2b34 --- /dev/null +++ b/icons-react/icons-js/brand-toyota.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandToyota({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-toyota" 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" /><ellipse cx={12} cy={12} rx={10} ry={7} /><path d="M9 12c0 3.866 1.343 7 3 7s3 -3.134 3 -7s-1.343 -7 -3 -7s-3 3.134 -3 7z" /><path d="M6.415 6.191c-.888 .503 -1.415 1.13 -1.415 1.809c0 1.657 3.134 3 7 3s7 -1.343 7 -3c0 -.678 -.525 -1.304 -1.41 -1.806" /></svg>; +} + +export default IconBrandToyota;
\ No newline at end of file diff --git a/icons-react/icons-js/masks-theater.js b/icons-react/icons-js/masks-theater.js new file mode 100644 index 00000000..bbe233ff --- /dev/null +++ b/icons-react/icons-js/masks-theater.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMasksTheater({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-masks-theater" 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="M13.192 9h6.616a2 2 0 0 1 1.992 2.183l-.567 6.182a4 4 0 0 1 -3.983 3.635h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183z" /><path d="M15 13h.01" /><path d="M18 13h.01" /><path d="M15 16.5c1 .667 2 .667 3 0" /><path d="M8.632 15.982a4.037 4.037 0 0 1 -.382 .018h-1.5a4 4 0 0 1 -3.983 -3.635l-.567 -6.182a2 2 0 0 1 1.992 -2.183h6.616a2 2 0 0 1 2 2" /><path d="M6 8h.01" /><path d="M9 8h.01" /><path d="M6 12c.764 -.51 1.528 -.63 2.291 -.36" /></svg>; +} + +export default IconMasksTheater;
\ No newline at end of file diff --git a/icons-react/icons-js/microwave-off.js b/icons-react/icons-js/microwave-off.js new file mode 100644 index 00000000..0431d6d5 --- /dev/null +++ b/icons-react/icons-js/microwave-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMicrowaveOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-microwave-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="M18 18h-14a1 1 0 0 1 -1 -1v-10a1 1 0 0 1 1 -1h2m4 0h10a1 1 0 0 1 1 1v10" /><path d="M15 6v5m0 4v3" /><path d="M18 12h.01" /><path d="M18 9h.01" /><path d="M6.5 10.5c1 -.667 1.5 -.667 2.5 0c.636 .265 1.272 .665 1.907 .428" /><path d="M6.5 13.5c1 -.667 1.5 -.667 2.5 0c.833 .347 1.667 .926 2.5 0" /><path d="M3 3l18 18" /></svg>; +} + +export default IconMicrowaveOff;
\ No newline at end of file diff --git a/icons-react/icons-js/pointer.js b/icons-react/icons-js/pointer.js new file mode 100644 index 00000000..e7c9efdc --- /dev/null +++ b/icons-react/icons-js/pointer.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPointer({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-pointer" 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 6l4.153 11.793a0.365 .365 0 0 0 .331 .207a0.366 .366 0 0 0 .332 -.207l2.184 -4.793l4.787 -1.994a0.355 .355 0 0 0 .213 -.323a0.355 .355 0 0 0 -.213 -.323l-11.787 -4.36z" /><path d="M13.5 13.5l4.5 4.5" /></svg>; +} + +export default IconPointer;
\ No newline at end of file diff --git a/icons-react/icons-js/rating-12-plus.js b/icons-react/icons-js/rating-12-plus.js new file mode 100644 index 00000000..2909579c --- /dev/null +++ b/icons-react/icons-js/rating-12-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating12Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-rating-12-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" /><circle cx={12} cy={12} r={9} /><path d="M7 15v-6" /><path d="M15.5 12h3" /><path d="M17 10.5v3" /><path d="M10 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3" /></svg>; +} + +export default IconRating12Plus;
\ No newline at end of file diff --git a/icons-react/icons-js/rating-14-plus.js b/icons-react/icons-js/rating-14-plus.js new file mode 100644 index 00000000..87c3ec2d --- /dev/null +++ b/icons-react/icons-js/rating-14-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating14Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-rating-14-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" /><circle cx={12} cy={12} r={9} /><path d="M7 15v-6" /><path d="M15.5 12h3" /><path d="M17 10.5v3" /><path d="M12.5 15v-6m-2.5 0v4h3" /></svg>; +} + +export default IconRating14Plus;
\ No newline at end of file diff --git a/icons-react/icons-js/rating-16-plus.js b/icons-react/icons-js/rating-16-plus.js new file mode 100644 index 00000000..27c8f045 --- /dev/null +++ b/icons-react/icons-js/rating-16-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating16Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-rating-16-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" /><circle cx={12} cy={12} r={9} /><circle cx={11.5} cy={13.5} r={1.5} /><path d="M7 15v-6" /><path d="M15.5 12h3" /><path d="M17 10.5v3" /><path d="M10 13.5v-3a1.5 1.5 0 0 1 1.5 -1.5h1" /></svg>; +} + +export default IconRating16Plus;
\ No newline at end of file diff --git a/icons-react/icons-js/rating-18-plus.js b/icons-react/icons-js/rating-18-plus.js new file mode 100644 index 00000000..81bce85c --- /dev/null +++ b/icons-react/icons-js/rating-18-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating18Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-rating-18-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" /><circle cx={12} cy={12} r={9} /><circle cx={11.5} cy={10.5} r={1.5} /><circle cx={11.5} cy={13.5} r={1.5} /><path d="M7 15v-6" /><path d="M15.5 12h3" /><path d="M17 10.5v3" /></svg>; +} + +export default IconRating18Plus;
\ No newline at end of file diff --git a/icons-react/icons-js/rating-21-plus.js b/icons-react/icons-js/rating-21-plus.js new file mode 100644 index 00000000..da0c541f --- /dev/null +++ b/icons-react/icons-js/rating-21-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconRating21Plus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-rating-21-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" /><circle cx={12} cy={12} r={9} /><path d="M13 15v-6" /><path d="M15.5 12h3" /><path d="M17 10.5v3" /><path d="M7 10.5a1.5 1.5 0 0 1 3 0c0 .443 -.313 .989 -.612 1.393l-2.388 3.107h3" /></svg>; +} + +export default IconRating21Plus;
\ No newline at end of file diff --git a/icons-react/icons-js/seo.js b/icons-react/icons-js/seo.js new file mode 100644 index 00000000..74f7bc55 --- /dev/null +++ b/icons-react/icons-js/seo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSeo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-seo" 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 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3" /><path d="M14 16h-4v-8h4" /><path d="M11 12h2" /><rect x={17} y={8} width={4} height={8} rx={1} /></svg>; +} + +export default IconSeo;
\ No newline at end of file diff --git a/icons-react/icons-js/shirt-sport.js b/icons-react/icons-js/shirt-sport.js new file mode 100644 index 00000000..cdd3a84d --- /dev/null +++ b/icons-react/icons-js/shirt-sport.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconShirtSport({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-shirt-sport" 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="M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0" /><path d="M10.5 11h2.5l-1.5 5" /></svg>; +} + +export default IconShirtSport;
\ No newline at end of file diff --git a/icons-react/icons-js/snowman.js b/icons-react/icons-js/snowman.js new file mode 100644 index 00000000..b312c05c --- /dev/null +++ b/icons-react/icons-js/snowman.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSnowman({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-snowman" 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 3a4 4 0 0 1 2.906 6.75a6 6 0 1 1 -5.81 0a4 4 0 0 1 2.904 -6.75z" /><path d="M17.5 11.5l2.5 -1.5" /><path d="M6.5 11.5l-2.5 -1.5" /><path d="M12 13h.01" /><path d="M12 16h.01" /></svg>; +} + +export default IconSnowman;
\ No newline at end of file diff --git a/icons-react/icons-js/uf-off.js b/icons-react/icons-js/uf-off.js new file mode 100644 index 00000000..bc85bc9d --- /dev/null +++ b/icons-react/icons-js/uf-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconUfOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-uf-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="M16.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 1.08 -.931 2.063 -2.468 2.814m-3.001 1c-1.36 .295 -2.9 .462 -4.531 .462c-5.52 0 -10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724" /><path d="M14.69 10.686c1.388 -.355 2.31 -.976 2.31 -1.686v-.035c0 -2.742 -2.239 -4.965 -5 -4.965c-1.125 0 -2.164 .37 -3 .992m-1.707 2.297a4.925 4.925 0 0 0 -.293 1.676v.035c0 .961 1.696 1.764 3.956 1.956" /><path d="M15 17l2 3" /><path d="M8.5 17l-1.5 3" /><path d="M12 14h.01" /><path d="M7 13h.01" /><path d="M17 13h.01" /><path d="M3 3l18 18" /></svg>; +} + +export default IconUfOff;
\ No newline at end of file diff --git a/icons-react/icons-js/ufo.js b/icons-react/icons-js/ufo.js new file mode 100644 index 00000000..2eae8268 --- /dev/null +++ b/icons-react/icons-js/ufo.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconUfo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-ufo" 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.95 9.01c3.02 .739 5.05 2.123 5.05 3.714c0 2.367 -4.48 4.276 -10 4.276s-10 -1.909 -10 -4.276c0 -1.59 2.04 -2.985 5.07 -3.724" /><path d="M7 9c0 1.105 2.239 2 5 2s5 -.895 5 -2v-.035c0 -2.742 -2.239 -4.965 -5 -4.965s-5 2.223 -5 4.965v.035" /><path d="M15 17l2 3" /><path d="M8.5 17l-1.5 3" /><path d="M12 14h.01" /><path d="M7 13h.01" /><path d="M17 13h.01" /></svg>; +} + +export default IconUfo;
\ No newline at end of file diff --git a/icons-react/icons-js/zeppelin.js b/icons-react/icons-js/zeppelin.js new file mode 100644 index 00000000..1c405d37 --- /dev/null +++ b/icons-react/icons-js/zeppelin.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconZeppelin({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zeppelin" 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="M13.5 4c4.694 0 8.5 2.686 8.5 6s-3.806 6 -8.5 6c-2.13 0 -4.584 -.926 -7.364 -2.777l-2.136 1.777v-3.33a46.07 46.07 0 0 1 -2 -1.67a46.07 46.07 0 0 1 2 -1.67v-3.33l2.135 1.778c2.78 -1.852 5.235 -2.778 7.365 -2.778z" /><path d="M10 15.5v4.5h6v-4" /></svg>; +} + +export default IconZeppelin;
\ No newline at end of file |