synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
9 lines (8 loc) • 486 B
TypeScript
import { TypographyProps } from '@material-ui/core';
import { ElementType, FC } from 'react';
interface ITypography extends Omit<TypographyProps, 'variant'> {
variant: 'headline1' | 'headline2' | 'headline3' | 'body1' | 'body2' | 'breadcrumb1' | 'breadcrumb2' | 'smallText1' | 'smallText2' | 'smallLink' | 'label' | 'buttonLink' | 'hintText' | 'sectionTitle' | 'subsectionHeader';
component?: ElementType;
}
declare const Typography: FC<ITypography>;
export default Typography;