@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
14 lines (13 loc) • 736 B
TypeScript
import { type VariantProps } from 'class-variance-authority';
import type { ComponentProps } from 'react';
export declare const logoVariants: (props?: ({
variant?: "full" | "onlyName" | "onlyIcon" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type LogoProps = {
nameClassName?: string;
iconClassName?: string;
className?: string;
} & VariantProps<typeof logoVariants>;
export declare const Logo: ({ nameClassName, iconClassName, className, variant, }: LogoProps) => import("react/jsx-runtime").JSX.Element;
export type FleekNameProps = ComponentProps<'svg'>;
export declare const FleekName: (props: FleekNameProps) => import("react/jsx-runtime").JSX.Element;