@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 667 B
JavaScript
const SvgDeleteForeverRound = (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='M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm3.17-6.41a.996.996 0 111.41-1.41L12 12.59l1.41-1.41a.996.996 0 111.41 1.41L13.41 14l1.41 1.41a.996.996 0 11-1.41 1.41L12 15.41l-1.41 1.41a.996.996 0 11-1.41-1.41L10.59 14l-1.42-1.41zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z' />
</svg>
);
}
export default SvgDeleteForeverRound;