react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 772 B
JSX
import React, { Component } from 'react';
export default class VectorTriangleIcon 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-triangle-icon ${this.props.className}`}><path fillRule="evenodd" d="M8.999 2.998v6h.727l-3.935 7.003H2.002v6.002h5.995V20h8.004v2.003h6.002V16h-3.796L14.273 9H15V2.998M11.001 5h1.997v2.003H11m1.002 2.034L16 16.152v1.845H7.997v-1.845M4 17.997H6V20H4m13.998-2.003H20V20h-2.003"/></svg>
)
}
}