@codeworker.br/govbr-tw-react
Version:
Biblioteca de componentes React usando Tailwind CSS que implementa o Padrão Digital de Governo.
23 lines (22 loc) • 1.3 kB
TypeScript
declare const tableVariants: (props?: ({
variant?: "default" | "dark" | "subtle" | null | undefined;
bordered?: boolean | null | undefined;
rounded?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
declare const tableHeaderCellVariants: (props?: ({
variant?: "default" | "dark" | "subtle" | null | undefined;
align?: "left" | "center" | "right" | null | undefined;
sticky?: boolean | null | undefined;
lined?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
declare const tableRowVariants: (props?: ({
variant?: "default" | "dark" | "subtle" | null | undefined;
striped?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
declare const tableCellVariants: (props?: ({
variant?: "default" | "dark" | "subtle" | null | undefined;
density?: "default" | "relaxed" | "compact" | null | undefined;
align?: "left" | "center" | "right" | null | undefined;
lined?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export { tableCellVariants, tableHeaderCellVariants, tableRowVariants, tableVariants, };