MCPcopy Create free account
hub / github.com/AntiHub-Project/AntiHub / QueueItemImage

Function QueueItemImage

components/ai-elements/queue.tsx:150–161  ·  view source on GitHub ↗
({
  className,
  ...props
}: QueueItemImageProps)

Source from the content-addressed store, hash-verified

148export type QueueItemImageProps = ComponentProps<"img">;
149
150export 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
163export type QueueItemFileProps = ComponentProps<"span">;
164

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected