UNPKG

@visa/nova-react

Version:

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

19 lines (18 loc) 739 B
import type { ComponentPropsWithRef, ElementType } from 'react'; export type BreadcrumbsProperties<ET extends ElementType = 'nav'> = { /** Use Custom Separator */ customSeparator?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef<ET>; /** * Supplemental navigation indicating the user's location in a site or app. * @docs {@link https://design.visa.com/components/breadcrumbs/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Breadcrumbs: { <ET extends ElementType = "div">({ className, customSeparator, tag: Tag, ...remainingProps }: BreadcrumbsProperties<ET>): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Breadcrumbs;