UNPKG

@vue-material/core

Version:

Yet another 'Material Design Components' library for Vue3.

13 lines (11 loc) 367 B
import { ColorString, SizesString } from '../../utils/css/type'; export type TextProps = { color?: ColorString; size?: SizesString; italic?: boolean; spacing?: SizesString; lineHeight?: SizesString; weight?: `${number}` | number; textAlign?: 'left' | 'center' | 'right'; wrap?: 'wrap' | 'nowrap' | 'balance' | 'pretty' | 'stable'; };