UNPKG

@itwin/itwinui-react

Version:

A react component library for iTwinUI

19 lines (18 loc) 528 B
import * as React from 'react'; import type { PolymorphicForwardRefComponent } from '../../utils/index.js'; type BlockquoteProps = { /** * Optional footer for any attribution/source. */ footer?: React.ReactNode; }; /** * Basic blockquote component * @example * <Blockquote>This is a quote</Blockquote> * <Blockquote footer='— Someone'> * <p>This is a quote from someone</p> * </Blockquote> */ export declare const Blockquote: PolymorphicForwardRefComponent<"blockquote", BlockquoteProps>; export {};