@yamada-ui/native-table
Version:
Yamada UI native table component
25 lines (22 loc) • 550 B
TypeScript
import * as _yamada_ui_core from '@yamada-ui/core';
import { HTMLUIProps } from '@yamada-ui/core';
interface ThOptions {
/**
* Aligns the cell content to the right.
*
* @default false
*
* @deprecated Use `numeric` instead.
*/
isNumeric?: boolean;
/**
* Aligns the cell content to the right.
*
* @default false
*/
numeric?: boolean;
}
interface ThProps extends HTMLUIProps<"th">, ThOptions {
}
declare const Th: _yamada_ui_core.Component<"th", ThProps>;
export { Th, type ThProps };