parent
bf49c023e7
commit
8a16de9a70
3 changed files with 38 additions and 5 deletions
@ -0,0 +1,23 @@ |
||||
interface MailIconProps { |
||||
className?: string; |
||||
} |
||||
export function MailIcon(props: MailIconProps) { |
||||
const { className } = props; |
||||
return ( |
||||
<svg |
||||
xmlns="http://www.w3.org/2000/svg" |
||||
width="24" |
||||
height="24" |
||||
viewBox="0 0 24 24" |
||||
fill="none" |
||||
stroke="currentColor" |
||||
stroke-width="2" |
||||
stroke-linecap="round" |
||||
stroke-linejoin="round" |
||||
className={className} |
||||
> |
||||
<rect width="20" height="16" x="2" y="4" rx="2" /> |
||||
<path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" /> |
||||
</svg> |
||||
); |
||||
} |
Loading…
Reference in new issue