UNPKG

@capgeminiuk/dcx-react-library

Version:

[![CircleCI](https://circleci.com/gh/Capgemini/dcx-react-library.svg?style=svg)](https://circleci.com/gh/Capgemini/dcx-react-library)

22 lines (21 loc) 480 B
import React from 'react'; type BlockquoteProps = { /** * optional CSS class name */ className?: string; /** * content of the blockquotes */ text: string | number; /** * footer of the blockquotes */ footer?: string; /** * Additional props/attributes */ props?: React.HTMLAttributes<HTMLQuoteElement>; }; export declare const Blockquote: ({ className, text, footer, props }: BlockquoteProps) => React.JSX.Element; export {};