UNPKG

@react-md/table

Version:

Create responsive data tables and accessible fixed tables

10 lines (9 loc) 534 B
import type { HTMLAttributes } from "react"; export declare type TableContainerProps = HTMLAttributes<HTMLDivElement>; /** * An extremely "useful" component that should be used with the `Table` * component if you want to make a responsive table within the page. If you * don't want to use this component, you can just apply `overflow: auto` to a * parent element of the table. */ export declare const TableContainer: import("react").ForwardRefExoticComponent<TableContainerProps & import("react").RefAttributes<HTMLDivElement>>;