flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 461 B
TypeScript
import { type ComponentPropsWithRef } from "react";
import type { DeepPartial } from "../../types";
export interface FlowbiteTableHeadCellTheme {
base: string;
}
export interface TableHeadCellProps extends ComponentPropsWithRef<"th"> {
theme?: DeepPartial<FlowbiteTableHeadCellTheme>;
}
export declare const TableHeadCell: import("react").ForwardRefExoticComponent<Omit<TableHeadCellProps, "ref"> & import("react").RefAttributes<HTMLTableCellElement>>;