@agentdao/core
Version:
Core functionality, skills, and ready-made UI components for AgentDAO - Web3 subscriptions, content generation, social media, help support, live chat, RSS fetching, web search, and agent pricing integration
16 lines (15 loc) • 549 B
TypeScript
import React from 'react';
import { Theme } from '../types';
interface ButtonProps {
children: React.ReactNode;
variant?: 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
size?: 'sm' | 'md' | 'lg';
disabled?: boolean;
loading?: boolean;
onClick?: () => void;
className?: string;
style?: React.CSSProperties;
theme?: Theme;
}
export declare function Button({ children, variant, size, disabled, loading, onClick, className, style, theme }: ButtonProps): import("react/jsx-runtime").JSX.Element;
export {};