react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 937 B
JSX
import React, { Component } from 'react';
export default class ChartArcIcon 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-chart-arc-icon ${this.props.className}`}><path d="M16.176 19.6l-2.007-3.477A4.496 4.496 0 0 0 15.972 13h4.013a8.494 8.494 0 0 1-3.809 6.6zM13 7.026V3.014A8.501 8.501 0 0 1 20.985 11h-4.012A4.502 4.502 0 0 0 13 7.027zM7 12.5c0 .641.134 1.252.376 1.804L3.9 16.31A8.5 8.5 0 0 1 11 4.015v4.012A4.5 4.5 0 0 0 7 12.5zm4.5 8.5a8.492 8.492 0 0 1-7.1-3.824l3.477-2.007A4.494 4.494 0 0 0 11.5 17c.641 0 1.251-.134 1.804-.376L15.31 20.1c-1.147.576-2.44.9-3.811.9z"/></svg>
)
}
}