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