react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 756 B
JSX
import React, { Component } from 'react';
export default class CloseOctagonIcon 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-icon ${this.props.className}`}><path d="M8.271 2.998L2.997 8.27v7.456l5.274 5.27h7.456l5.274-5.27V8.271l-5.274-5.273M8.41 7.003l3.593 3.588 3.59-3.588 1.41 1.406-3.593 3.593 3.594 3.59-1.412 1.41-3.588-3.593-3.594 3.594-1.407-1.412 3.59-3.588-3.59-3.594"/></svg>
)
}
}