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