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

12 lines (11 loc) 360 B
import { type ReactElement } from 'react'; export type Product = { name: string; description: string; icon: ReactElement; disabled?: boolean; }; export type ProductDropdownProps = { onClick: (product: Product) => void; }; export declare const ProductDropdown: ({ onClick }: ProductDropdownProps) => import("react/jsx-runtime").JSX.Element;