diff options
author | codecalm <codecalm@gmail.com> | 2020-11-13 22:11:22 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-11-13 22:11:22 +0100 |
commit | 061e99b8965fadf6eb390a5b1ca137004badf8c2 (patch) | |
tree | 8b65f023a51f103cf0745a203fd039b1a40682cb /icons-react/icons-js | |
parent | icons version fixes (diff) | |
download | tabler-icons-061e99b8965fadf6eb390a5b1ca137004badf8c2.tar.xz |
Release 1.36.0v1.36.0
Diffstat (limited to 'icons-react/icons-js')
24 files changed, 255 insertions, 3 deletions
diff --git a/icons-react/icons-js/brand-apple.js b/icons-react/icons-js/brand-apple.js index c2a82a18..03eb5bfc 100644 --- a/icons-react/icons-js/brand-apple.js +++ b/icons-react/icons-js/brand-apple.js @@ -6,7 +6,7 @@ function IconBrandApple({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-brand-apple" 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 7c-3 0-4 3-4 5.5 0 3 2 7.5 4 7.5 1.088-.046 1.679-.5 3-.5 1.312 0 1.5.5 3 .5s4-3 4-5c-.028-.01-2.472-.403-2.5-3-.019-2.17 2.416-2.954 2.5-3-1.023-1.492-2.951-1.963-3.5-2-1.433-.111-2.83 1-3.5 1-.68 0-1.9-1-3-1z" /><path d="M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2" /></svg>; + return <svg className="icon icon-tabler icon-tabler-brand-apple" 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 7c-3 0-4 3-4 5.5 0 3 2 7.5 4 7.5 1.088-.046 1.679-.5 3-.5 1.312 0 1.5 .5 3 .5s4-3 4-5c-.028-.01-2.472-.403-2.5-3-.019-2.17 2.416-2.954 2.5-3-1.023-1.492-2.951-1.963-3.5-2-1.433-.111-2.83 1-3.5 1-.68 0-1.9-1-3-1z" /><path d="M12 4a2 2 0 0 0 2 -2a2 2 0 0 0 -2 2" /></svg>; } export default IconBrandApple;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-asana.js b/icons-react/icons-js/brand-asana.js new file mode 100644 index 00000000..054bda3f --- /dev/null +++ b/icons-react/icons-js/brand-asana.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandAsana({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-asana" 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={7} r={3} /><circle cx={17} cy={16} r={3} /><circle cx={7} cy={16} r={3} /></svg>; +} + +export default IconBrandAsana;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-bing.js b/icons-react/icons-js/brand-bing.js new file mode 100644 index 00000000..8eda2075 --- /dev/null +++ b/icons-react/icons-js/brand-bing.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandBing({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-bing" 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 3l4 1.5v12l6 -2.5l-2 -1l-1 -4l7 2.5v4.5l-10 5l-4 -2z" /></svg>; +} + +export default IconBrandBing;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-bitbucket.js b/icons-react/icons-js/brand-bitbucket.js new file mode 100644 index 00000000..9555ceac --- /dev/null +++ b/icons-react/icons-js/brand-bitbucket.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandBitbucket({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-bitbucket" 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="M3.648 4a0.64 .64 0 0 0 -.64 .744l3.14 14.528c.07 .417 .43 .724 .852 .728h10a0.644 .644 0 0 0 .642 -.539l3.35 -14.71a0.641 .641 0 0 0 -.64 -.744l-16.704 -.007z" /><path d="M14 15h-4l-1 -6h6z" /></svg>; +} + +export default IconBrandBitbucket;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-booking.js b/icons-react/icons-js/brand-booking.js new file mode 100644 index 00000000..a4f85691 --- /dev/null +++ b/icons-react/icons-js/brand-booking.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandBooking({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-booking" 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="M4 18v-9.5a4.5 4.5 0 0 1 4.5 -4.5h7a4.5 4.5 0 0 1 4.5 4.5v7a4.5 4.5 0 0 1 -4.5 4.5h-9.5a2 2 0 0 1 -2 -2z" /><path d="M8 12h3.5a2 2 0 1 1 0 4h-3.5v-7a1 1 0 0 1 1 -1h1.5a2 2 0 1 1 0 4h-1.5" /><line x1={16} y1={16} x2={16.01} y2={16} /></svg>; +} + +export default IconBrandBooking;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-disqus.js b/icons-react/icons-js/brand-disqus.js new file mode 100644 index 00000000..f63f7133 --- /dev/null +++ b/icons-react/icons-js/brand-disqus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandDisqus({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-disqus" 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="M11.847 21c-2.259 0 -4.323 -.667 -5.919 -2h-3.928l1.708 -3.266c-.545 -1.174 -.759 -2.446 -.758 -3.734c0 -4.97 3.84 -9 8.898 -9c5.052 0 9.152 4.03 9.152 9c0 4.972 -4.098 9 -9.153 9z" /><path d="M11.485 15h-1.485v-6h1.485c2.112 0 3.515 .823 3.515 2.981v.035c0 2.18 -1.403 2.984 -3.515 2.984z" /></svg>; +} + +export default IconBrandDisqus;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-docker.js b/icons-react/icons-js/brand-docker.js new file mode 100644 index 00000000..fbe714aa --- /dev/null +++ b/icons-react/icons-js/brand-docker.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandDocker({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-docker" 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="M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1.002 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z" /><path d="M5 10h3v3h-3z" /><path d="M8 10h3v3h-3z" /><path d="M11 10h3v3h-3z" /><path d="M8 7h3v3h-3z" /><path d="M11 7h3v3h-3z" /><path d="M11 4h3v3h-3z" /><path d="M4.571 18.001c1.5 0 2.047 -.074 2.958 -.78" /><line x1={10} y1={16} x2={10} y2={16.01} /></svg>; +} + +export default IconBrandDocker;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-google-analytics.js b/icons-react/icons-js/brand-google-analytics.js new file mode 100644 index 00000000..db736d6e --- /dev/null +++ b/icons-react/icons-js/brand-google-analytics.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandGoogleAnalytics({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-google-analytics" 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={10} y={9} width={4} height={12} rx={1.105} /><rect x={17} y={3} width={4} height={18} rx={1.105} /><circle cx={5} cy={19} r={2} /></svg>; +} + +export default IconBrandGoogleAnalytics;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-gravatar.js b/icons-react/icons-js/brand-gravatar.js new file mode 100644 index 00000000..32607680 --- /dev/null +++ b/icons-react/icons-js/brand-gravatar.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandGravatar({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-gravatar" 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.64 5.632a9 9 0 1 0 6.36 -2.632v7.714" /></svg>; +} + +export default IconBrandGravatar;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-hipchat.js b/icons-react/icons-js/brand-hipchat.js new file mode 100644 index 00000000..6fcc4e8a --- /dev/null +++ b/icons-react/icons-js/brand-hipchat.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandHipchat({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-hipchat" 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.802 17.292s.077 -.055 .2 -.149c1.843 -1.425 2.998 -3.49 2.998 -5.789c0 -4.286 -4.03 -7.764 -8.998 -7.764c-4.97 0 -9.002 3.478 -9.002 7.764c0 4.288 4.03 7.646 9 7.646c.424 0 1.12 -.028 2.088 -.084c1.262 .82 3.104 1.493 4.716 1.493c.499 0 .734 -.41 .414 -.828c-.486 -.596 -1.156 -1.551 -1.416 -2.29z" /><path d="M7.5 13.5c2.5 2.5 6.5 2.5 9 0" /></svg>; +} + +export default IconBrandHipchat;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-kickstarter.js b/icons-react/icons-js/brand-kickstarter.js new file mode 100644 index 00000000..49200695 --- /dev/null +++ b/icons-react/icons-js/brand-kickstarter.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandKickstarter({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-kickstarter" 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="M11 9l2.975 -4.65c.615 -.9 1.405 -1.35 2.377 -1.35c.79 0 1.474 .286 2.054 .858c.576 .574 .866 1.256 .866 2.054c0 .588 -.153 1.109 -.46 1.559l-2.812 4.029l3.465 4.912c.356 .46 .535 .998 .535 1.613a2.92 2.92 0 0 1 -.843 2.098c-.561 .584 -1.242 .877 -2.04 .877c-.876 0 -1.545 -.29 -2.005 -.87l-4.112 -5.697v3.067c0 .876 -.313 1.69 -.611 2.175c-.543 .883 -1.35 1.325 -2.389 1.325c-.944 0 -1.753 -.327 -2.271 -.974c-.486 -.6 -.729 -1.392 -.729 -2.38v-11.371c0 -.934 .247 -1.706 .74 -2.313c.512 -.641 1.347 -.962 2.26 -.962c.868 0 1.821 .321 2.4 .962c.323 .356 .515 .714 .6 1.08c.052 .224 0 .643 0 1.26v2.698z" /></svg>; +} + +export default IconBrandKickstarter;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-netflix.js b/icons-react/icons-js/brand-netflix.js new file mode 100644 index 00000000..bda797a7 --- /dev/null +++ b/icons-react/icons-js/brand-netflix.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandNetflix({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-netflix" 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 20v-16l7 16v-16" /></svg>; +} + +export default IconBrandNetflix;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-open-source.js b/icons-react/icons-js/brand-open-source.js new file mode 100644 index 00000000..00ebda3b --- /dev/null +++ b/icons-react/icons-js/brand-open-source.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandOpenSource({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-open-source" 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 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z" /></svg>; +} + +export default IconBrandOpenSource;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-pagekit.js b/icons-react/icons-js/brand-pagekit.js new file mode 100644 index 00000000..17748025 --- /dev/null +++ b/icons-react/icons-js/brand-pagekit.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandPagekit({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-pagekit" 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.077 20h-5.077v-16h11v14h-5.077" /></svg>; +} + +export default IconBrandPagekit;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-patreon.js b/icons-react/icons-js/brand-patreon.js new file mode 100644 index 00000000..794ee54c --- /dev/null +++ b/icons-react/icons-js/brand-patreon.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandPatreon({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-patreon" 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="M3 3h3v18h-3z" /><circle cx={15} cy={9.5} r={6.5} /></svg>; +} + +export default IconBrandPatreon;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-producthunt.js b/icons-react/icons-js/brand-producthunt.js new file mode 100644 index 00000000..8b39dea7 --- /dev/null +++ b/icons-react/icons-js/brand-producthunt.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandProducthunt({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-producthunt" 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 16v-8h2.5a2.5 2.5 0 1 1 0 5h-2.5" /><circle cx={12} cy={12} r={9} /></svg>; +} + +export default IconBrandProducthunt;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-sass.js b/icons-react/icons-js/brand-sass.js new file mode 100644 index 00000000..3d5be777 --- /dev/null +++ b/icons-react/icons-js/brand-sass.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandSass({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-sass" 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 10.523c2.46 -.826 4.002 -.826 4.002 -2.155c0 -1.366 -1.347 -1.366 -2.735 -1.366c-1.91 0 -3.352 .49 -4.537 1.748c-.848 .902 -1.027 2.449 -.153 3.307c.973 .956 3.206 1.789 2.884 3.493c-.233 1.235 -1.469 1.823 -2.617 1.202c-.782 -.424 -.454 -1.746 .626 -2.512s2.822 -.992 4.1 -.24c.98 .575 1.046 1.724 .434 2.193" /></svg>; +} + +export default IconBrandSass;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-sentry.js b/icons-react/icons-js/brand-sentry.js new file mode 100644 index 00000000..91b2d583 --- /dev/null +++ b/icons-react/icons-js/brand-sentry.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandSentry({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-sentry" 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="M3 18a1.93 1.93 0 0 0 .306 1.076a2 2 0 0 0 1.584 .924c.646 .033 -.537 0 .11 0h3a4.992 4.992 0 0 0 -3.66 -4.81c.558 -.973 1.24 -2.149 2.04 -3.531a8.997 8.997 0 0 1 5.62 8.341h4c.663 0 2.337 .005 3 0a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-1.84 3.176c4.482 2.05 7.6 6.571 7.6 11.824" /></svg>; +} + +export default IconBrandSentry;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-shazam.js b/icons-react/icons-js/brand-shazam.js new file mode 100644 index 00000000..d5f55f5c --- /dev/null +++ b/icons-react/icons-js/brand-shazam.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandShazam({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-shazam" 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 12l2 -2a2.828 2.828 0 0 1 4 0a2.828 2.828 0 0 1 0 4l-3 3" /><path d="M14 12l-2 2a2.828 2.828 0 1 1 -4 -4l3 -3" /><circle cx={12} cy={12} r={9} /></svg>; +} + +export default IconBrandShazam;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-stripe.js b/icons-react/icons-js/brand-stripe.js new file mode 100644 index 00000000..dc117927 --- /dev/null +++ b/icons-react/icons-js/brand-stripe.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandStripe({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-stripe" 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="M11.453 8.056c0 -.623 .518 -.979 1.442 -.979c1.69 0 3.41 .343 4.605 .923l.5 -4c-.948 -.449 -2.82 -1 -5.5 -1c-1.895 0 -3.373 .087 -4.5 1c-1.172 .956 -2 2.33 -2 4c0 3.03 1.958 4.906 5 6c1.961 .69 3 .743 3 1.5c0 .735 -.851 1.5 -2 1.5c-1.423 0 -3.963 -.609 -5.5 -1.5l-.5 4c1.321 .734 3.474 1.5 6 1.5c2.004 0 3.957 -.468 5.084 -1.36c1.263 -.979 1.916 -2.268 1.916 -4.14c0 -3.096 -1.915 -4.547 -5.003 -5.637c-1.646 -.605 -2.544 -1.07 -2.544 -1.807z" /></svg>; +} + +export default IconBrandStripe;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-unsplash.js b/icons-react/icons-js/brand-unsplash.js new file mode 100644 index 00000000..b6d85743 --- /dev/null +++ b/icons-react/icons-js/brand-unsplash.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandUnsplash({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-unsplash" 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="M4 11h5v4h6v-4h5v9h-16zm5 -7h6v4h-6z" /></svg>; +} + +export default IconBrandUnsplash;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-ycombinator.js b/icons-react/icons-js/brand-ycombinator.js new file mode 100644 index 00000000..8451fc40 --- /dev/null +++ b/icons-react/icons-js/brand-ycombinator.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandYcombinator({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-ycombinator" 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={4} y={4} width={16} height={16} rx={2} /><path d="M8 7.002l4 5.998l4 -6" /><line x1={12} y1={17} x2={12} y2={13} /></svg>; +} + +export default IconBrandYcombinator;
\ No newline at end of file diff --git a/icons-react/icons-js/credit-card-off.js b/icons-react/icons-js/credit-card-off.js index f9cc9a3b..fadee11d 100644 --- a/icons-react/icons-js/credit-card-off.js +++ b/icons-react/icons-js/credit-card-off.js @@ -6,7 +6,7 @@ function IconCreditCardOff({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-credit-card-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128.87 1" /><path d="M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87" /><line x1={3} y1={11} x2={11} y2={11} /><line x1={15} y1={11} x2={21} y2={11} /><line x1={7} y1={15} x2={7.01} y2={15} /><line x1={11} y1={15} x2={13} y2={15} /></svg>; + return <svg className="icon icon-tabler icon-tabler-credit-card-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87 1" /><path d="M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87" /><line x1={3} y1={11} x2={11} y2={11} /><line x1={15} y1={11} x2={21} y2={11} /><line x1={7} y1={15} x2={7.01} y2={15} /><line x1={11} y1={15} x2={13} y2={15} /></svg>; } export default IconCreditCardOff;
\ No newline at end of file diff --git a/icons-react/icons-js/planet.js b/icons-react/icons-js/planet.js index d3794eef..56457e09 100644 --- a/icons-react/icons-js/planet.js +++ b/icons-react/icons-js/planet.js @@ -6,7 +6,7 @@ function IconPlanet({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-planet" 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.816 13.58c2.292 2.138 3.546 4 3.092 4.9-.745 1.46-5.783-.259-11.255-3.838-5.47-3.579-9.304-7.664-8.56-9.123.464-.91 2.926-.444 5.803.805" /><circle cx={12} cy={12} r={7} /></svg>; + return <svg className="icon icon-tabler icon-tabler-planet" 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.816 13.58c2.292 2.138 3.546 4 3.092 4.9-.745 1.46-5.783-.259-11.255-3.838-5.47-3.579-9.304-7.664-8.56-9.123 .464-.91 2.926-.444 5.803.805" /><circle cx={12} cy={12} r={7} /></svg>; } export default IconPlanet;
\ No newline at end of file |