UNPKG

@amsterdam/design-system-react

Version:

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

35 lines (34 loc) 1.46 kB
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; import type { HeadingProps } from '../Heading'; export type PageFooterMenuProps = { /** * Describes the menu for users of assistive technology. * The heading gets visually hidden – sighted users can infer the meaning of the menu from its appearance. * @default Over deze website */ heading?: string; /** * The hierarchical level of the Footer Menu’s Heading within the document. * The default value is 2. This will almost always be correct – but verify this yourself. */ headingLevel?: HeadingProps['level']; } & PropsWithChildren<HTMLAttributes<HTMLUListElement>>; export declare const PageFooterMenu: import("react").ForwardRefExoticComponent<{ /** * Describes the menu for users of assistive technology. * The heading gets visually hidden – sighted users can infer the meaning of the menu from its appearance. * @default Over deze website */ heading?: string; /** * The hierarchical level of the Footer Menu’s Heading within the document. * The default value is 2. This will almost always be correct – but verify this yourself. */ headingLevel?: HeadingProps["level"]; } & HTMLAttributes<HTMLUListElement> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLUListElement>>;