@react-md/table
Version:
Create responsive data tables and accessible fixed tables
10 lines (9 loc) • 496 B
TypeScript
import type { HTMLAttributes } from "react";
import type { TableConfig } from "./config";
export interface TableBodyProps extends HTMLAttributes<HTMLTableSectionElement>, Omit<TableConfig, "header"> {
}
/**
* Creates a `<tbody>` element that also allows for overriding all the child
* `TableCell` components with additional styling behavior.
*/
export declare const TableBody: import("react").ForwardRefExoticComponent<TableBodyProps & import("react").RefAttributes<HTMLTableSectionElement>>;