UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

12 lines (11 loc) 450 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '..'; import type { FlowbiteTableCellTheme } from './TableCell'; export interface FlowbiteTableBodyTheme { base: string; cell: FlowbiteTableCellTheme; } export interface TableBodyProps extends PropsWithChildren, ComponentProps<'tbody'> { theme?: DeepPartial<FlowbiteTableCellTheme>; } export declare const TableBody: FC<TableBodyProps>;