Function
QueueItemAction
({
className,
...props
}: QueueItemActionProps)
Source from the content-addressed store, hash-verified
| 121 | >; |
| 122 | |
| 123 | export const QueueItemAction = ({ |
| 124 | className, |
| 125 | ...props |
| 126 | }: QueueItemActionProps) => ( |
| 127 | <Button |
| 128 | className={cn( |
| 129 | "size-auto rounded p-1 text-muted-foreground opacity-0 transition-opacity hover:bg-muted-foreground/10 hover:text-foreground group-hover:opacity-100", |
| 130 | className |
| 131 | )} |
| 132 | size="icon" |
| 133 | type="button" |
| 134 | variant="ghost" |
| 135 | {...props} |
| 136 | /> |
| 137 | ); |
| 138 | |
| 139 | export type QueueItemAttachmentProps = ComponentProps<"div">; |
| 140 | |
Callers
nothing calls this directly
Tested by
no test coverage detected