react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 681 B
JSX
import React, { Component } from 'react';
export default class OctagonOutlineIcon 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-octagon-outline-icon ${this.props.className}`}><path d="M8.271 2.998L2.997 8.27v7.456l5.274 5.274h7.456l5.274-5.274V8.271l-5.274-5.273M9.101 5h5.801L19 9.101v5.801L14.903 19H9.1L5 14.903V9.1"/></svg>
)
}
}