UNPKG

@js-smart/react-kit

Version:
15 lines (14 loc) 526 B
import { default as React } from 'react'; interface ManageButtonProps { size?: 'small' | 'medium' | 'large'; variant?: 'text' | 'outlined' | 'contained'; color?: 'inherit' | 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning'; className?: string; name?: string; dataCy?: string; startIcon?: React.ReactNode; onClick: () => void; children?: React.ReactNode; } export declare function ManageButton(props: ManageButtonProps): import("react/jsx-runtime").JSX.Element; export {};