UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

12 lines (11 loc) 552 B
import { type ComponentPropsWithRef } from "react"; import type { DeepPartial } from "../../types"; import type { FlowbiteTableHeadCellTheme } from "./TableHeadCell"; export interface FlowbiteTableHeadTheme { base: string; cell: FlowbiteTableHeadCellTheme; } export interface TableHeadProps extends ComponentPropsWithRef<"thead"> { theme?: DeepPartial<FlowbiteTableHeadTheme>; } export declare const TableHead: import("react").ForwardRefExoticComponent<Omit<TableHeadProps, "ref"> & import("react").RefAttributes<HTMLTableSectionElement>>;