UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

10 lines (9 loc) 445 B
import { AnchorHTMLAttributes, PropsWithChildren } from 'react'; export type HeaderMenuLinkProps = { fixed?: boolean; } & PropsWithChildren<AnchorHTMLAttributes<HTMLAnchorElement>>; export declare const HeaderMenuLink: import("react").ForwardRefExoticComponent<{ fixed?: boolean; } & AnchorHTMLAttributes<HTMLAnchorElement> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLAnchorElement>>;