mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
22 lines
782 B
TypeScript
22 lines
782 B
TypeScript
import React from "react";
|
|
|
|
export const MailIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg
|
|
width="24"
|
|
height="22"
|
|
viewBox="0 0 24 22"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M3.00001 0.5C1.34315 0.5 5.72204e-06 1.84315 5.72204e-06 3.5V5L11.3292 10.6646C11.7515 10.8757 12.2485 10.8757 12.6708 10.6646L24 5V3.5C24 1.84315 22.6569 0.5 21 0.5H3.00001Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M24 8.75L14.0125 13.7438C12.7456 14.3772 11.2544 14.3772 9.98754 13.7438L0 8.75L5.72204e-06 18.5C5.72204e-06 20.1568 1.34315 21.5 3.00001 21.5H21C22.6569 21.5 24 20.1569 24 18.5L24 8.75Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|