flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 337 B
TypeScript
/// <reference types="react" />
import type { FlowbiteTableTheme } from "./Table";
export type TableContext = {
theme: FlowbiteTableTheme;
striped?: boolean;
hoverable?: boolean;
};
export declare const TableContext: import("react").Context<TableContext | undefined>;
export declare function useTableContext(): TableContext;