react-iconslab
Version:
This package contains a set of commonly used SVG icons: **Email**, **User Profile**, and **Delete** as React components.
18 lines (15 loc) • 349 B
JavaScript
import React from "react";
const EmailIcon = () => (
<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="M22 12l-10 6-10-6V6l10 6 10-6v6z" />
</svg>
);
export default EmailIcon;