react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 488 B
JavaScript
import React from 'react';
export default function DeleteForeverIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-delete-forever ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6v12m2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12M15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5z" />
</svg>
);
}