UNPKG

@fleek-platform/agents-ui

Version:

The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward

15 lines (14 loc) 612 B
import type { PropsWithChildren } from 'react'; import { type VariantProps } from 'class-variance-authority'; import type React from 'react'; declare const alertVariants: (props?: ({ variant?: "warning" | "danger" | "info" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type AlertVariantProps = VariantProps<typeof alertVariants>; type AlertProps = AlertVariantProps & PropsWithChildren<{ className?: string; displayIcon?: boolean; }>; export declare const Alert: React.FC<AlertProps>; export {};