(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function CrossIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 2 | return ( |
| 3 | <svg |
| 4 | xmlns="http://www.w3.org/2000/svg" |
| 5 | fill="none" |
| 6 | viewBox="0 0 24 24" |
| 7 | strokeWidth={2} |
| 8 | stroke="currentColor" |
| 9 | aria-hidden="true" |
| 10 | {...props} |
| 11 | > |
| 12 | <path |
| 13 | strokeLinecap="round" |
| 14 | strokeLinejoin="round" |
| 15 | d="M6 18 18 6M6 6l12 12" |
| 16 | /> |
| 17 | </svg> |
| 18 | ); |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected