Function
QueueItemAttachment
({
className,
...props
}: QueueItemAttachmentProps)
Source from the content-addressed store, hash-verified
| 140 | export type QueueItemAttachmentProps = ComponentProps<"div">; |
| 141 | |
| 142 | export const QueueItemAttachment = ({ |
| 143 | className, |
| 144 | ...props |
| 145 | }: QueueItemAttachmentProps) => ( |
| 146 | <div className={cn("mt-1 flex flex-wrap gap-2", className)} {...props} /> |
| 147 | ); |
| 148 | |
| 149 | export type QueueItemImageProps = ComponentProps<"img">; |
| 150 | |
Callers
nothing calls this directly
Tested by
no test coverage detected