(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function DocumentIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 2 | return ( |
| 3 | <svg viewBox="0 0 20 20" aria-hidden="true" {...props}> |
| 4 | <path |
| 5 | strokeLinecap="round" |
| 6 | strokeLinejoin="round" |
| 7 | d="M3.5 4.5v11a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-8h-5v-5h-6a2 2 0 0 0-2 2Z" |
| 8 | /> |
| 9 | <path |
| 10 | fill="none" |
| 11 | strokeLinecap="round" |
| 12 | strokeLinejoin="round" |
| 13 | d="m11.5 2.5 5 5" |
| 14 | /> |
| 15 | </svg> |
| 16 | ); |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected