@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
18 lines (17 loc) • 708 B
TypeScript
import type { ComponentPropsWithRef, ElementType } from 'react';
export type AnchorLinkMenuProperties<ET extends ElementType = 'aside'> = {
/** Tag of Component */
tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
* Menu of links that navigate to sections within the current page.
* @docs {@link https://design.visa.com/components/anchor-link-menu/?code_library=react | See Docs}
* @related anchor-link-menu-header
* @vgar TODO
* @wcag TODO
*/
declare const AnchorLinkMenu: {
<ET extends ElementType = "aside">({ className, tag: Tag, ...remainingProps }: AnchorLinkMenuProperties<ET>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default AnchorLinkMenu;