@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
13 lines (12 loc) • 632 B
TypeScript
import { type VariantProps } from 'class-variance-authority';
export type AgentActiveStatus = 'active' | 'inactive' | 'draft';
declare const dotVariants: (props?: ({
variant?: "active" | "inactive" | null | undefined;
size?: "sm" | "md" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type DotVariants = VariantProps<typeof dotVariants>;
type AgentActiveDotProps = DotVariants & {
className?: string;
};
declare const AgentActiveDot: ({ variant, size, className }: AgentActiveDotProps) => import("react/jsx-runtime").JSX.Element;
export default AgentActiveDot;