| 278 | }; |
| 279 | |
| 280 | interface EntityItemProps { |
| 281 | href: string; |
| 282 | title: string; |
| 283 | subtitle?: React.ReactNode; |
| 284 | image?: React.ReactNode; |
| 285 | actions?: React.ReactNode; |
| 286 | onRemove?: () => void | Promise<void>; |
| 287 | isRemoving?: boolean; |
| 288 | className?: string; |
| 289 | }; |
| 290 | |
| 291 | export const EntityItem = ({ |
| 292 | href, |
nothing calls this directly
no outgoing calls
no test coverage detected