UNPKG

@cainthus/alex-library

Version:

Component React library for Cainthus - Alex Dashboard.

14 lines (13 loc) 399 B
import { ReactNode } from "react"; export declare type Props = { children: ReactNode; size?: string; className?: string; theme?: string; style?: React.CSSProperties; }; export declare const defaultProps: { size: "md" | "sm" | "lg"; theme: "primary" | "success" | "error" | "default" | "dark" | "warn"; }; export declare type DefaultProps = Readonly<typeof defaultProps>;