react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 761 B
JSX
import React, { Component } from 'react';
export default class ContrastCircleIcon 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-contrast-circle-icon ${this.props.className}`}><path d="M12 19.998a7.975 7.975 0 0 1-5.658-2.343L17.656 6.341A8 8 0 0 1 12 19.998zm-6-12h2v-2h1.5v2h2v1.5h-2v2H8v-2H6m6-7.5c-5.524 0-10 4.477-10 10s4.476 10 10 10c5.522 0 10-4.477 10-10s-4.478-10-10-10zm0 14h5v-1.5h-5v1.5z"/></svg>
)
}
}