@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
17 lines (16 loc) • 653 B
TypeScript
import type { ComponentPropsWithRef, ElementType } from 'react';
export type ThProperties<ET extends ElementType = 'th'> = {
/** Alt */
alternate?: boolean;
/** Tag of Component */
tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
* Table header cell component usually used for titles and column/row descriptions.
* @docs {@link https://design.visa.com/components/table/?code_library=react | See Docs}
*/
declare const Th: {
<ET extends ElementType = "th">({ alternate, className, scope, tag: Tag, ...remainingProps }: ThProperties<ET>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Th;