@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
19 lines (18 loc) • 806 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { BlockquoteHTMLAttributes, PropsWithChildren } from 'react';
export type BlockquoteProps = PropsWithChildren<BlockquoteHTMLAttributes<HTMLQuoteElement>> & {
/** Changes the text colour for readability on a dark background. */
color?: 'inverse';
};
/**
* @see {@link https://designsystem.amsterdam/?path=/docs/components-text-blockquote--docs Blockquote docs at Amsterdam Design System}
*/
export declare const Blockquote: import("react").ForwardRefExoticComponent<BlockquoteHTMLAttributes<HTMLQuoteElement> & {
children?: import("react").ReactNode | undefined;
} & {
/** Changes the text colour for readability on a dark background. */
color?: "inverse";
} & import("react").RefAttributes<HTMLQuoteElement>>;