UNPKG

@visa/nova-react

Version:

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

10 lines (9 loc) 303 B
import type { FC, SVGProps } from 'react'; export type VisaBadgeEllipseProperties = { /** CSS Class Name */ className?: string; /** aria-label */ 'aria-label'?: string; } & SVGProps<SVGSVGElement>; declare const BadgeEllipse: FC<VisaBadgeEllipseProperties>; export default BadgeEllipse;