Function
QueueItem
({ className, ...props }: QueueItemProps)
Source from the content-addressed store, hash-verified
| 35 | export type QueueItemProps = ComponentProps<"li">; |
| 36 | |
| 37 | export const QueueItem = ({ className, ...props }: QueueItemProps) => ( |
| 38 | <li |
| 39 | className={cn( |
| 40 | "group flex flex-col gap-1 rounded-md px-3 py-1 text-sm transition-colors hover:bg-muted", |
| 41 | className |
| 42 | )} |
| 43 | {...props} |
| 44 | /> |
| 45 | ); |
| 46 | |
| 47 | export type QueueItemIndicatorProps = ComponentProps<"span"> & { |
| 48 | completed?: boolean; |
Callers
nothing calls this directly
Tested by
no test coverage detected