Function
IconClose
({ className, ...props }: React.ComponentProps<'svg'>)
Source from the content-addressed store, hash-verified
| 381 | } |
| 382 | |
| 383 | function IconClose({ className, ...props }: React.ComponentProps<'svg'>) { |
| 384 | return ( |
| 385 | <svg |
| 386 | xmlns="http://www.w3.org/2000/svg" |
| 387 | viewBox="0 0 256 256" |
| 388 | fill="currentColor" |
| 389 | className={cn('h-4 w-4', className)} |
| 390 | {...props} |
| 391 | > |
| 392 | <path d="M205.66 194.34a8 8 0 0 1-11.32 11.32L128 139.31l-66.34 66.35a8 8 0 0 1-11.32-11.32L116.69 128 50.34 61.66a8 8 0 0 1 11.32-11.32L128 116.69l66.34-66.35a8 8 0 0 1 11.32 11.32L139.31 128Z" /> |
| 393 | </svg> |
| 394 | ) |
| 395 | } |
| 396 | |
| 397 | function IconEdit({ className, ...props }: React.ComponentProps<'svg'>) { |
| 398 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected