@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
21 lines (19 loc) • 491 B
JavaScript
const SvgReportProblemTwoTone = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path d='M0 0h24v24H0V0z' fill='none' />
<path
d='M12 5.99L4.47 19h15.06L12 5.99zM13 18h-2v-2h2v2zm-2-4v-4h2v4h-2z'
opacity={0.3}
/>
<path d='M12 2L1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM11 16h2v2h-2zm0-6h2v4h-2z' />
</svg>
);
}
export default SvgReportProblemTwoTone;