react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 847 B
JSX
import React, { Component } from 'react';
export default class GoogleIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-google-icon ${this.props.className}`}><path d="M21.354 11.104H12.18v2.722h6.506c-.321 3.817-3.497 5.445-6.495 5.445-3.836 0-7.182-3.018-7.182-7.247 0-4.12 3.19-7.294 7.19-7.294 3.087 0 4.905 1.967 4.905 1.967l1.907-1.973S16.564 2 12.102 2C6.421 2 2.025 6.795 2.025 11.975 2.025 17.051 6.16 22 12.247 22c5.354 0 9.273-3.668 9.273-9.09 0-1.145-.166-1.806-.166-1.806z"/></svg>
)
}
}