@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
16 lines (15 loc) • 676 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type CardHeadingGroupProps = PropsWithChildren<HTMLAttributes<HTMLElement>> & {
/** A short phrase of text, e.g. to categorise the card. Displayed above the card heading. */
tagline: string;
};
export declare const CardHeadingGroup: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
children?: import("react").ReactNode | undefined;
} & {
/** A short phrase of text, e.g. to categorise the card. Displayed above the card heading. */
tagline: string;
} & import("react").RefAttributes<HTMLElement>>;