UNPKG

@visa/nova-react

Version:

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

15 lines (14 loc) 643 B
import type { ElementType } from 'react'; import { type TypographyProperties } from '../typography'; export type ProgressLabelProperties<ET extends ElementType = 'label'> = TypographyProperties<ET>; /** * Label used with a progress component for textual representation of status. * @docs {@link https://design.visa.com/components/progress/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const ProgressLabel: { <ET extends ElementType = "label">({ className, tag, ...remainingProps }: ProgressLabelProperties<ET>): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ProgressLabel;