UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

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