UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 325 B
import type { ComponentProps, FC } from 'react'; import type { DeepPartial } from '../../types'; export interface FlowbiteTableCellTheme { base: string; } export interface TableCellProps extends ComponentProps<'td'> { theme?: DeepPartial<FlowbiteTableCellTheme>; } export declare const TableCell: FC<TableCellProps>;