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

14 lines
407 B
TypeScript

import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
interface TableColumnHeaderProps extends HTMLChakraProps<"th"> {
/**
* Aligns the cell content to the right
* @default false
*/
isNumeric?: boolean;
}
declare const Th: _chakra_ui_system.ComponentWithAs<"th", TableColumnHeaderProps>;
export { TableColumnHeaderProps, Th };