react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 845 B
JSX
import React, { Component } from 'react';
export default class VectorCircleVariantIcon 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-vector-circle-variant-icon ${this.props.className}`}><path d="M22 9.001h-2.026A9.002 9.002 0 0 0 11.502 3c-4.97 0-8.998 4.034-8.998 9.005a8.998 8.998 0 0 0 8.998 8.999 9.007 9.007 0 0 0 8.477-6.002H22m-1.996-3.998V13H18v-1.996m-.185 3.998a6.997 6.997 0 0 1-6.313 4A7 7 0 0 1 4.5 12.004a7.002 7.002 0 0 1 7.002-7.003 6.993 6.993 0 0 1 6.31 4h-1.807v6"/></svg>
)
}
}