Function
IconClose
({ className, ...props }: React.ComponentProps<'svg'>)
Source from the content-addressed store, hash-verified
| 184 | } |
| 185 | |
| 186 | function IconClose({ className, ...props }: React.ComponentProps<'svg'>) { |
| 187 | return ( |
| 188 | <svg |
| 189 | xmlns="http://www.w3.org/2000/svg" |
| 190 | viewBox="0 0 256 256" |
| 191 | fill="currentColor" |
| 192 | className={cn('h-4 w-4', className)} |
| 193 | {...props} |
| 194 | > |
| 195 | <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" /> |
| 196 | </svg> |
| 197 | ); |
| 198 | } |
| 199 | |
| 200 | function IconShare({ className, ...props }: React.ComponentProps<'svg'>) { |
| 201 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected