react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 643 B
JSX
import React, { Component } from 'react';
export default class ShapePolygonPlusIcon 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-shape-polygon-plus-icon ${this.props.className}`}><path d="M17 15.7V13h2v4l-9 4-7-7 4-9h4v2H8.3l-2.9 6.6 5 5 6.6-2.9zM22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3z"/></svg>
)
}
}