UNPKG

reablocks

Version:
10 lines (9 loc) 366 B
import { default as React } from 'react'; import { TypographyTheme } from './TypographyTheme'; export interface LeadProps extends React.HTMLAttributes<HTMLParagraphElement> { /** * Theme for Typography. */ theme?: TypographyTheme; } export declare const Lead: React.ForwardRefExoticComponent<LeadProps & React.RefAttributes<HTMLParagraphElement>>;