1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-22 03:11:36 +07:00
verdaccio-ui/src/muiComponents/Text/TextConfig.ts
Alfonso Austin d4f2720994 chore(build): add missing export (#417)
Co-authored-by: Juan Picado @jotadeveloper <juanpicado19@gmail.com>
2020-01-14 07:43:31 +01:00

8 lines
223 B
TypeScript

import { TypographyProps } from '@material-ui/core/Typography';
type TextType = 'subtitle1' | 'subtitle2' | 'body1' | 'body2';
export interface TextProps extends Omit<TypographyProps, 'variant'> {
variant?: TextType;
}