( props: React.ComponentPropsWithoutRef<'svg'>, )
| 1 | export function PaperAirplaneIcon( |
| 2 | props: React.ComponentPropsWithoutRef<'svg'>, |
| 3 | ) { |
| 4 | return ( |
| 5 | <svg viewBox="0 0 20 20" aria-hidden="true" {...props}> |
| 6 | <path |
| 7 | fill="none" |
| 8 | strokeLinecap="round" |
| 9 | strokeLinejoin="round" |
| 10 | d="M17 3L1 9L8 12M17 3L11 19L8 12M17 3L8 12" |
| 11 | /> |
| 12 | <path |
| 13 | strokeLinecap="round" |
| 14 | strokeLinejoin="round" |
| 15 | d="M11 19L8 12L17 3L11 19Z" |
| 16 | /> |
| 17 | </svg> |
| 18 | ) |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected