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