UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

9 lines (8 loc) 486 B
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;