reablocks
Version:
Component library for React
10 lines (9 loc) • 386 B
TypeScript
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>>;