react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 716 B
JSX
import React, { Component } from 'react';
export default class SignCautionIcon 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-sign-caution-icon ${this.props.className}`}><path d="M2 3h20v10h-4v8h-2v-8H8v8H6v-8H2V3zm16.975 8L20 9.975V7.146L16.146 11h2.829zm-5.657 0l6-6H16.49l-6 6h2.828zm-5.657 0l6-6h-2.828l-6 6H7.66zM5.176 5L4 6.176v2.828L8.004 5H5.176z"/></svg>
)
}
}