UNPKG

@yamada-ui/native-table

Version:

Yamada UI native table component

17 lines (14 loc) 478 B
import * as _yamada_ui_core from '@yamada-ui/core'; import { HTMLUIProps } from '@yamada-ui/core'; interface TableCaptionOptions { /** * The placement of the table caption. * * @default 'bottom' */ placement?: "bottom" | "top"; } interface TableCaptionProps extends HTMLUIProps<"caption">, TableCaptionOptions { } declare const TableCaption: _yamada_ui_core.Component<"caption", TableCaptionProps>; export { TableCaption, type TableCaptionProps };