Files
wdi-dashboard/node_modules/@chakra-ui/table/dist/table-caption.d.ts
2024-08-16 15:06:52 +05:30

14 lines
477 B
TypeScript

import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
interface TableCaptionProps extends HTMLChakraProps<"caption"> {
/**
* The placement of the table caption. This sets the `caption-side` CSS attribute.
* @default "bottom"
*/
placement?: "top" | "bottom";
}
declare const TableCaption: _chakra_ui_system.ComponentWithAs<"caption", TableCaptionProps>;
export { TableCaption, TableCaptionProps };