@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 = {
/** A short phrase of text, e.g. to categorise the card. Displayed above the card heading. */
tagline: string;
} & PropsWithChildren<HTMLAttributes<HTMLElement>>;
export declare const CardHeadingGroup: import("react").ForwardRefExoticComponent<{
/** A short phrase of text, e.g. to categorise the card. Displayed above the card heading. */
tagline: string;
} & HTMLAttributes<HTMLElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>>;