UNPKG

reablocks

Version:
10 lines (9 loc) 386 B
import { default as React } from 'react'; import { TypographyTheme } from './TypographyTheme'; export interface BlockQuoteProps extends React.BlockquoteHTMLAttributes<HTMLQuoteElement> { /** * Theme for Typography. */ theme?: TypographyTheme; } export declare const BlockQuote: React.ForwardRefExoticComponent<BlockQuoteProps & React.RefAttributes<HTMLQuoteElement>>;