UNPKG

fomantic-ui-react

Version:

Fomantic-UI React -- A React Component Library.

12 lines (11 loc) 450 B
import { ElementProps } from '../common'; export interface TextProps extends ElementProps { /** * 颜色 */ color?: 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'error' | 'red' | 'orange' | 'yellow' | 'olive' | 'green' | 'teal' | 'blue' | 'violet' | 'purple' | 'pink' | 'brown' | 'grey' | 'black'; /** * 尺寸 */ size?: 'mini' | 'tiny' | 'small' | 'medium' | 'large' | 'big' | 'huge' | 'massive'; }