Function
QueueItemImage
({
className,
...props
}: QueueItemImageProps)
Source from the content-addressed store, hash-verified
| 148 | export type QueueItemImageProps = ComponentProps<"img">; |
| 149 | |
| 150 | export const QueueItemImage = ({ |
| 151 | className, |
| 152 | ...props |
| 153 | }: QueueItemImageProps) => ( |
| 154 | <img |
| 155 | alt="" |
| 156 | className={cn("h-8 w-8 rounded border object-cover", className)} |
| 157 | height={32} |
| 158 | width={32} |
| 159 | {...props} |
| 160 | /> |
| 161 | ); |
| 162 | |
| 163 | export type QueueItemFileProps = ComponentProps<"span">; |
| 164 | |
Callers
nothing calls this directly
Tested by
no test coverage detected