Function
QueueItemContent
({
completed = false,
className,
...props
}: QueueItemContentProps)
Source from the content-addressed store, hash-verified
| 70 | }; |
| 71 | |
| 72 | export const QueueItemContent = ({ |
| 73 | completed = false, |
| 74 | className, |
| 75 | ...props |
| 76 | }: QueueItemContentProps) => ( |
| 77 | <span |
| 78 | className={cn( |
| 79 | "line-clamp-1 grow break-words", |
| 80 | completed |
| 81 | ? "text-muted-foreground/50 line-through" |
| 82 | : "text-muted-foreground", |
| 83 | className |
| 84 | )} |
| 85 | {...props} |
| 86 | /> |
| 87 | ); |
| 88 | |
| 89 | export type QueueItemDescriptionProps = ComponentProps<"div"> & { |
| 90 | completed?: boolean; |
Callers
nothing calls this directly
Tested by
no test coverage detected