UNPKG

@visa/nova-react

Version:

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

15 lines (14 loc) 656 B
import type { ComponentPropsWithRef, ElementType } from 'react'; export type AnchorLinkMenuHeaderProperties<ET extends ElementType = 'div'> = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef<ET>; /** * Component containing the header of the anchor link menu. * @docs {@link https://design.visa.com/components/anchor-link-menu/?code_library=react | See Docs} */ declare const AnchorLinkMenuHeader: { <ET extends ElementType = "div">({ className, tag: Tag, ...remainingProps }: AnchorLinkMenuHeaderProperties<ET>): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default AnchorLinkMenuHeader;