MCPcopy Create free account
hub / github.com/MagicCube/agentara / QueueItem

Function QueueItem

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected