react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 836 B
JSX
import React, { Component } from 'react';
export default class GoogleCirclesIcon 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-circles-icon ${this.props.className}`}><path d="M16.657 14.98l.342.018a7.98 7.98 0 0 0 2.871-.54c-.699 4.275-4.399 7.54-8.87 7.54a9 9 0 0 1-9-9c0-4.472 3.265-8.172 7.54-8.871A7.98 7.98 0 0 0 9 6.997l.016.344A5.995 5.995 0 0 0 11 18.998a5.998 5.998 0 0 0 5.658-4.017zM17 9.999a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-9a6 6 0 1 1 0 12 6 6 0 0 1 0-12z"/></svg>
)
}
}