(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function PackageIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 2 | return ( |
| 3 | <svg viewBox="0 0 20 20" aria-hidden="true" {...props}> |
| 4 | <path |
| 5 | strokeWidth="0" |
| 6 | d="m10 9.5-7.5-4v9l7.5 4v-9ZM10 9.5l7.5-4v9l-7.5 4v-9Z" |
| 7 | /> |
| 8 | <path |
| 9 | fill="none" |
| 10 | strokeLinecap="round" |
| 11 | strokeLinejoin="round" |
| 12 | d="m2.5 5.5 7.5 4m-7.5-4v9l7.5 4m-7.5-13 7.5-4 7.5 4m-7.5 4v9m0-9 7.5-4m-7.5 13 7.5-4v-9m-11 6 .028-3.852L13.5 3.5" |
| 13 | /> |
| 14 | </svg> |
| 15 | ) |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected