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