({ className }: { className?: string })
| 610 | } |
| 611 | |
| 612 | function EmailIcon({ className }: { className?: string }) { |
| 613 | return ( |
| 614 | <svg className={className} fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}> |
| 615 | <path strokeLinecap="round" strokeLinejoin="round" d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75" /> |
| 616 | </svg> |
| 617 | ); |
| 618 | } |
| 619 | |
| 620 | function ExternalLinkIcon({ className }: { className?: string }) { |
| 621 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected