UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

19 lines (18 loc) 761 B
import { ElementType, ForwardedRef } from 'react'; export type ThProperties = { /** Alt */ alternate?: boolean; /** @ignore */ className?: string; /** Tag of Component */ tag?: ElementType; }; /** * Table header cell component usually used for titles and column/row descriptions. * @docs {@link https://design.visa.com/react/components/table | See Docs} */ declare const _default: <HTMLElementType = HTMLTableCellElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & ThProperties) => import("react").ReactElement; export default _default;