@capgeminiuk/dcx-react-library
Version:
[](https://circleci.com/gh/Capgemini/dcx-react-library)
22 lines (21 loc) • 480 B
TypeScript
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 {};