UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 908 B
import React, { Component } from 'react'; export default class VectorPolygonIcon 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-polygon-icon ${this.props.className}`}><path fillRule="evenodd" d="M2.002 2.002v5.995h2.276l1.288 8.004H4v6.002H10v-1.94l5-.01v1.95h6.001V16H19.17L20 9h2.003V2.998H16v3.536L14.8 7.997H9.59L7.997 5.82V2.002M4 4H6V6H4M17.997 5H20v2.003h-2.003M6.31 7.997h.805l1.885 2.59v3.412H15v-3.087L16.567 9h1.422L17.159 16H15v2.055l-5 .005v-2.06H7.598M11 10h1.997v2.002H11m-5 5.995h1.996V20H6.002m11.002-2.003h1.996V20h-1.996"/></svg> ) } }