react-iconslab
Version:
This package contains a set of commonly used SVG icons: **Email**, **User Profile**, and **Delete** as React components.
19 lines (16 loc) • 405 B
JavaScript
import React from "react";
const DeleteIcon = () => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M3 6l3 12c.6 2.4 2.7 4 5 4h6c2.3 0 4.4-1.6 5-4l3-12H3z" />
<path d="M8 6h8M10 2h4" />
</svg>
);
export default DeleteIcon;