UNPKG

@amsterdam/design-system-react

Version:

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

28 lines (27 loc) 1.11 kB
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type UnorderedListProps = { /** Changes the text colour for readability on a dark background. */ color?: 'inverse'; /** Whether the list items show a marker. */ markers?: boolean; /** The size of the text. */ size?: 'small'; } & PropsWithChildren<HTMLAttributes<HTMLUListElement>>; export declare const UnorderedList: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a dark background. */ color?: "inverse"; /** Whether the list items show a marker. */ markers?: boolean; /** The size of the text. */ size?: "small"; } & HTMLAttributes<HTMLUListElement> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLUListElement>> & { Item: import("react").ForwardRefExoticComponent<import("react").LiHTMLAttributes<HTMLLIElement> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLLIElement>>; };