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

Function QueueItem

components/ai-elements/queue.tsx:36–44  ·  view source on GitHub ↗
({ className, ...props }: QueueItemProps)

Source from the content-addressed store, hash-verified

34export type QueueItemProps = ComponentProps<"li">;
35
36export const QueueItem = ({ className, ...props }: QueueItemProps) => (
37 <li
38 className={cn(
39 "group flex flex-col gap-1 rounded-md px-3 py-1 text-sm transition-colors hover:bg-muted",
40 className
41 )}
42 {...props}
43 />
44);
45
46export type QueueItemIndicatorProps = ComponentProps<"span"> & {
47 completed?: boolean;

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected