Function
QueueItemDescription
({
completed = false,
className,
...props
}: QueueItemDescriptionProps)
Source from the content-addressed store, hash-verified
| 90 | }; |
| 91 | |
| 92 | export const QueueItemDescription = ({ |
| 93 | completed = false, |
| 94 | className, |
| 95 | ...props |
| 96 | }: QueueItemDescriptionProps) => ( |
| 97 | <div |
| 98 | className={cn( |
| 99 | "ml-6 text-xs", |
| 100 | completed |
| 101 | ? "text-muted-foreground/40 line-through" |
| 102 | : "text-muted-foreground", |
| 103 | className |
| 104 | )} |
| 105 | {...props} |
| 106 | /> |
| 107 | ); |
| 108 | |
| 109 | export type QueueItemActionsProps = ComponentProps<"div">; |
| 110 | |
Callers
nothing calls this directly
Tested by
no test coverage detected