flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 435 B
text/typescript
import { type ComponentPropsWithRef } from "react";
import type { ThemingProps } from "../../types";
export interface TableHeadCellTheme {
base: string;
}
export interface TableHeadCellProps extends ComponentPropsWithRef<"th">, ThemingProps<TableHeadCellTheme> {
}
export declare const TableHeadCell: import("react").ForwardRefExoticComponent<Omit<TableHeadCellProps, "ref"> & import("react").RefAttributes<HTMLTableCellElement>>;