UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 441 B
import { type ComponentPropsWithRef } from "react"; import type { DeepPartial } from "../../types"; export interface FlowbiteTableCellTheme { base: string; } export interface TableCellProps extends ComponentPropsWithRef<"td"> { theme?: DeepPartial<FlowbiteTableCellTheme>; } export declare const TableCell: import("react").ForwardRefExoticComponent<Omit<TableCellProps, "ref"> & import("react").RefAttributes<HTMLTableCellElement>>;