@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
14 lines (13 loc) • 488 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { AnchorHTMLAttributes } from 'react';
export type TableOfContentsLinkProps = AnchorHTMLAttributes<HTMLAnchorElement> & {
/** The text for the link. */
label: string;
};
export declare const TableOfContentsLink: import("react").ForwardRefExoticComponent<AnchorHTMLAttributes<HTMLAnchorElement> & {
/** The text for the link. */
label: string;
} & import("react").RefAttributes<HTMLAnchorElement>>;