react-nepali-datetime-picker
Version:
A simple and reusable Nepali calendar, date and time picker components for React.
12 lines (11 loc) • 371 B
TypeScript
/// <reference types="react" />
type ButtonVariant = 'circle' | 'pilled' | 'outline' | 'text' | 'icon';
interface ButtonProps extends React.HTMLAttributes<HTMLButtonElement> {
children: React.ReactNode;
variant?: ButtonVariant;
active?: boolean;
selected?: boolean;
disabled?: boolean;
}
export declare const Button: React.FC<ButtonProps>;
export {};