flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
12 lines (11 loc) • 540 B
TypeScript
import { type ComponentPropsWithRef } from "react";
import type { DeepPartial } from "../../types";
import type { FlowbiteTableCellTheme } from "./TableCell";
export interface FlowbiteTableBodyTheme {
base: string;
cell: FlowbiteTableCellTheme;
}
export interface TableBodyProps extends ComponentPropsWithRef<"tbody"> {
theme?: DeepPartial<FlowbiteTableBodyTheme>;
}
export declare const TableBody: import("react").ForwardRefExoticComponent<Omit<TableBodyProps, "ref"> & import("react").RefAttributes<HTMLTableSectionElement>>;