({ size = 16 }: { size?: number })
| 8 | |
| 9 | // Small X for marker delete |
| 10 | export const IconClose = ({ size = 16 }: { size?: number }) => ( |
| 11 | <svg width={size} height={size} viewBox="0 0 16 16" fill="none"> |
| 12 | <path |
| 13 | d="M4 4l8 8M12 4l-8 8" |
| 14 | stroke="currentColor" |
| 15 | strokeWidth="1.5" |
| 16 | strokeLinecap="round" |
| 17 | /> |
| 18 | </svg> |
| 19 | ); |
| 20 | |
| 21 | // Plus icon |
| 22 | export const IconPlus = ({ size = 16 }: { size?: number }) => ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…