UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 824 B
import React, { Component } from 'react'; export default class VectorPolylineIcon 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-polyline-icon ${this.props.className}`}><path fillRule="evenodd" d="M16.001 2.002v5.995h1.074l-2.129 5h-.684l-2.26-3.026V5h-6v6.001h.912l-2.036 5H2.002v6.002h5.995V16h-.96l2.035-5h1.202l1.729 2.314v5.684h5.994v-6.001h-.878l2.128-5h2.756V2.002m-4.006 1.996H20V6h-2.003m-10 1.002H10v1.996H7.997M14 15H16v2.003H14m-10 .994H6V20H4"/></svg> ) } }