@react-md/table
Version:
Create responsive data tables and accessible fixed tables
9 lines (8 loc) • 443 B
TypeScript
import type { HTMLAttributes } from "react";
export declare type CaptionProps = HTMLAttributes<HTMLTableCaptionElement>;
/**
* This component is really just a simple wrapper for applying the `<caption>`
* typography styles and probably doesn't have much real use if you don't use
* captions.
*/
export declare const Caption: import("react").ForwardRefExoticComponent<CaptionProps & import("react").RefAttributes<HTMLTableCaptionElement>>;