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) 440 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { LiHTMLAttributes, PropsWithChildren } from 'react'; export type UnorderedListItemProps = PropsWithChildren<LiHTMLAttributes<HTMLLIElement>>; export declare const UnorderedListItem: import("react").ForwardRefExoticComponent<LiHTMLAttributes<HTMLLIElement> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLLIElement>>;