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