react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 695 B
JSX
import React, { Component } from 'react';
export default class AlertOctagonIcon 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-alert-octagon-icon ${this.props.className}`}><path d="M13 12.998h-2v-6h2m-1 10.3a1.3 1.3 0 1 1 0-2.601 1.3 1.3 0 0 1 0 2.601zm3.727-14.3H8.271L2.999 8.27v7.456l5.272 5.272h7.456L21 15.726V8.27l-5.272-5.272z"/></svg>
)
}
}