UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 755 B
import React, { Component } from 'react'; export default class ChartPieIcon 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-pie-icon ${this.props.className}`}><path d="M21 11h-8V3a8 8 0 0 1 8 8zm-2 2a7.992 7.992 0 0 1-3.574 6.665L11.577 13H19zm-8 8a7.992 7.992 0 0 1-6.665-3.574l6.482-3.743 3.743 6.483A7.966 7.966 0 0 1 11 21zm-8-8a8 8 0 0 1 8-8v7.423L3.834 16.56A7.967 7.967 0 0 1 3 13z"/></svg> ) } }