UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library. Compatible with React ^19.

12 lines (11 loc) 521 B
import type { ComponentPropsWithRef, ElementType } from 'react'; export type TdProperties<ET extends ElementType = 'td'> = ComponentPropsWithRef<ET>; /** * Table data cell component typically used for displaying data and content. * @docs {@link https://design.visa.com/components/table/?code_library=react | See Docs} */ declare const Td: { <ET extends ElementType = "td">({ className, ...remainingProps }: TdProperties<ET>): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Td;