diff options
Diffstat (limited to 'icons-react/icons-js/brand-google-one.js')
-rw-r--r-- | icons-react/icons-js/brand-google-one.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/brand-google-one.js b/icons-react/icons-js/brand-google-one.js new file mode 100644 index 00000000..55baf641 --- /dev/null +++ b/icons-react/icons-js/brand-google-one.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandGoogleOne({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-google-one" 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 4.998v13.982a1.998 1.998 0 0 0 3.995 0v-13.982a1.998 1.998 0 1 0 -3.995 0z" /><path d="M6.63 8.407a2.125 2.125 0 0 0 -.074 2.944c.77 .834 2.051 .869 2.862 .077l4.95 -4.834c.812 -.792 .846 -2.11 .076 -2.945a1.984 1.984 0 0 0 -2.861 -.077l-4.953 4.835z" /></svg>; +} + +export default IconBrandGoogleOne;
\ No newline at end of file |