@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) • 624 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type FigureCaptionProps = PropsWithChildren<HTMLAttributes<HTMLElement>> & {
/** Changes the text colour for readability on a dark background. */
color?: 'inverse';
};
export declare const FigureCaption: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
children?: import("react").ReactNode | undefined;
} & {
/** Changes the text colour for readability on a dark background. */
color?: "inverse";
} & import("react").RefAttributes<HTMLElement>>;