react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 933 B
JSX
import React, { Component } from 'react';
export default class SetAllIcon 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-set-all-icon ${this.props.className}`}><path d="M9 5a7.001 7.001 0 0 1 3.002.684A6.998 6.998 0 0 1 15 5a7 7 0 1 1 0 14 7.001 7.001 0 0 1-3.002-.684c-.936.448-1.96.681-2.998.684A7 7 0 1 1 9 5zm-.5 7c0 1.875.794 3.564 2.064 4.75l.999-.456A5.49 5.49 0 0 1 9.5 12a5.49 5.49 0 0 1 2.063-4.294l-1-.457A6.482 6.482 0 0 0 8.5 12zm7 0a6.482 6.482 0 0 0-2.064-4.75l-.999.456A5.49 5.49 0 0 1 14.5 12a5.49 5.49 0 0 1-2.063 4.294l1 .457A6.482 6.482 0 0 0 15.5 12z"/></svg>
)
}
}