(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function ShirtIcon(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="M12.5 1.5s0 2-2.5 2-2.5-2-2.5-2h-2L2.207 4.793a1 1 0 0 0 0 1.414L4.5 8.5v10h11v-10l2.293-2.293a1 1 0 0 0 0-1.414L14.5 1.5h-2Z" |
| 8 | /> |
| 9 | </svg> |
| 10 | ) |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected