react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 358 B
JavaScript
import React from 'react';
export default function TrashCanIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-trash-can ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9 3v1H4v2h1v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6h1V4h-5V3H9m0 5h2v9H9V8m4 0h2v9h-2V8z" />
</svg>
);
}