UNPKG

@cainthus/alex-library

Version:

Component React library for Cainthus - Alex Dashboard.

13 lines (12 loc) 345 B
import { ReactNode } from "react"; export declare type Props = { children: ReactNode; tag?: string; weight?: string; className?: string; } & Partial<DefaultProps>; export declare const defaultProps: { tag: string; weight: "light" | "lighter" | "bold"; }; export declare type DefaultProps = Readonly<typeof defaultProps>;