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

11 lines (10 loc) 269 B
import type React from 'react'; import { type BoxProps } from '../Box'; type ActionBoxProps = BoxProps & { title: string; description: string; icon: React.ReactNode; href?: string; }; export declare const ActionBox: React.FC<ActionBoxProps>; export {};