1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-29 21:07:47 +07:00
verdaccio-ui/src/muiComponents/Text/TextConfig.ts

8 lines
223 B
TypeScript
Raw Normal View History

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