UNPKG

@utrecht/component-library-react

Version:

React component library bundle for the Municipality of Utrecht based on the NL Design System architecture

20 lines 858 B
/** * @license EUPL-1.2 * Copyright (c) 2023 Gemeente Utrecht */ import type { LinkProps } from '@utrecht/link-react'; import { HTMLAttributes, PropsWithChildren, ReactNode } from 'react'; export interface LinkListLinkProps extends LinkProps { icon?: ReactNode; } export declare const LinkListLink: import("react").ForwardRefExoticComponent<LinkListLinkProps & { children?: ReactNode | undefined; } & import("react").RefAttributes<HTMLAnchorElement>>; export interface LinkListProps extends Omit<HTMLAttributes<HTMLUListElement>, 'children'> { icon?: () => ReactNode; links?: PropsWithChildren<LinkListLinkProps>[]; } export declare const LinkList: import("react").ForwardRefExoticComponent<LinkListProps & { children?: ReactNode | undefined; } & import("react").RefAttributes<HTMLUListElement>>; //# sourceMappingURL=LinkList.d.ts.map