@cainthus/alex-library
Version:
Component React library for Cainthus - Alex Dashboard.
15 lines (14 loc) • 451 B
TypeScript
import { ReactNode } from 'react';
export declare type Props = {
children: ReactNode;
style?: object;
className: string;
theme: string;
weight: string;
} & Partial<DefaultProps>;
export declare const defaultProps: {
theme: "primary" | "secondary" | "success" | "error" | "default";
weight: "light" | "lighter" | "bold" | "normal";
className: string;
};
export declare type DefaultProps = Readonly<typeof defaultProps>;