mirror of
https://github.com/SomboChea/ui
synced 2026-01-13 22:55:48 +07:00
8 lines
223 B
TypeScript
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;
|
|
}
|