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

Function QueueItemAction

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

Source from the content-addressed store, hash-verified

122>;
123
124export const QueueItemAction = ({
125 className,
126 ...props
127}: QueueItemActionProps) => (
128 <Button
129 className={cn(
130 "size-auto rounded p-1 text-muted-foreground opacity-0 transition-opacity hover:bg-muted-foreground/10 hover:text-foreground group-hover:opacity-100",
131 className
132 )}
133 size="icon"
134 type="button"
135 variant="ghost"
136 {...props}
137 />
138);
139
140export type QueueItemAttachmentProps = ComponentProps<"div">;
141

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected