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