@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 TdOptions {
/**
* 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 TdProps extends HTMLUIProps<"td">, TdOptions {
}
declare const Td: _yamada_ui_core.Component<"td", TdProps>;
export { Td, type TdProps };