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/brand-shazam.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/brand-shazam.js')
-rw-r--r-- | icons-react/icons-js/brand-shazam.js | 12 |
1 files changed, 12 insertions, 0 deletions
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 |