flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
6 lines (5 loc) • 335 B
text/typescript
import type { ThemingProps } from "../../types";
import type { TableBodyTheme } from "./TableBody";
export type TableBodyContextValue = ThemingProps<TableBodyTheme>;
export declare const TableBodyContext: import("react").Context<TableBodyContextValue | undefined>;
export declare function useTableBodyContext(): TableBodyContextValue;