@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
21 lines (20 loc) • 937 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type LinkListProps = PropsWithChildren<HTMLAttributes<HTMLUListElement>>;
/**
* @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-link-list--docs Link List docs at Amsterdam Design System}
*/
export declare const LinkList: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLUListElement>> & {
Link: import("react").ForwardRefExoticComponent<{
color?: "inverse" | "contrast";
icon?: import("..").IconProps["svg"];
size?: "small" | "large";
} & import("react").AnchorHTMLAttributes<HTMLAnchorElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLAnchorElement>>;
};