UNPKG

reablocks

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