({ className }: { className?: string })
| 55 | }; |
| 56 | |
| 57 | export const SendIcon = ({ className }: { className?: string }) => { |
| 58 | return ( |
| 59 | <svg |
| 60 | xmlns="http://www.w3.org/2000/svg" |
| 61 | viewBox="0 0 16 16" |
| 62 | fill="none" |
| 63 | className={className} |
| 64 | strokeWidth="2" |
| 65 | > |
| 66 | <path |
| 67 | d="M.5 1.163A1 1 0 0 1 1.97.28l12.868 6.837a1 1 0 0 1 0 1.766L1.969 15.72A1 1 0 0 1 .5 14.836V10.33a1 1 0 0 1 .816-.983L8.5 8 1.316 6.653A1 1 0 0 1 .5 5.67V1.163Z" |
| 68 | fill="currentColor" |
| 69 | ></path> |
| 70 | </svg> |
| 71 | ); |
| 72 | }; |
| 73 | |
| 74 | export const XIcon = ({ className }: { className?: string }) => ( |
| 75 | <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth="1.5" stroke="currentColor" className={className}> |
nothing calls this directly
no outgoing calls
no test coverage detected