react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 844 B
JSX
import React, { Component } from 'react';
export default class GoogleCirclesExtendedIcon 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-extended-icon ${this.props.className}`}><path d="M18 18.998A2 2 0 1 1 17.997 15 2 2 0 0 1 18 19zm0-6a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm-6-1.9a1.9 1.9 0 1 0 0 3.801 1.9 1.9 0 0 0 0-3.8zm-6 7.9A2 2 0 1 1 5.997 15 2 2 0 0 1 6 19zm0-6a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm6-9a2 2 0 1 1 0 3.999 2 2 0 0 1 0-3.999zm0 6a4 4 0 1 0-.001-8 4 4 0 0 0 0 8z"/></svg>
)
}
}