react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 832 B
JSX
import React, { Component } from 'react';
export default class CloseOctagonOutlineIcon 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-close-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.1m4.116-1.396L7.705 9.116l2.886 2.886-2.886 2.88 1.411 1.412 2.886-2.885 2.88 2.885 1.412-1.412-2.885-2.88 2.885-2.886-1.412-1.411-2.88 2.886"/></svg>
)
}
}