hoda-react
Version:
<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <
28 lines (27 loc) • 808 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import { TableContextType } from './TableContext';
export interface FlowbiteTableTheme {
base: string;
wrapper: string;
head: {
base: string;
cell: {
base: string;
};
};
row: {
hovered: string;
striped: string;
};
cell: {
base: string;
};
}
export type TableProps = PropsWithChildren<ComponentProps<'table'> & TableContextType>;
export declare const Table: FC<TableProps> & {
Head: FC<import("./TableHead").TableHeadProps>;
Body: FC<import("./TableBody").TableBodyProps>;
Row: FC<import("./TableRow").TableRowProps>;
Cell: FC<import("./TableCell").TableCellProps>;
HeadCell: FC<import("./TableHeadCell").TableHeadCellProps>;
};