UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

20 lines (19 loc) 795 B
import { ElementType, ForwardedRef } from 'react'; export type AnchorLinkMenuProperties = { /** @ignore */ className?: string; /** Tag of Component */ tag?: ElementType; }; /** * Menu of links that navigate to sections within the current page. * @docs {@link https://design.visa.com/react/components/anchor-link-menu | See Docs} * @related anchor-link-menu-header * @vgar TODO * @wcag TODO */ declare const _default: <HTMLElementType = HTMLElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & AnchorLinkMenuProperties) => import("react").ReactElement; export default _default;