({ color }: { color?: string })
| 1 | import React from 'react' |
| 2 | |
| 3 | export const IconClose = ({ color }: { color?: string }) => ( |
| 4 | <svg |
| 5 | width="23" height="23" viewBox="0 0 23 23" |
| 6 | fill="none" stroke={color || 'currentColor'} |
| 7 | strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" |
| 8 | > |
| 9 | <path d="M20 4 4 20"/> |
| 10 | <path d="m4 4 16 16"/> |
| 11 | </svg> |
| 12 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected