yuang-framework-ui-pc
Version:
yuang-framework-ui-pc Library
36 lines (32 loc) • 421 B
TypeScript
import type { Component } from 'vue';
/**
* 文本类型
*/
export type TextType =
| 'default'
| 'heading'
| 'secondary'
| 'placeholder'
| 'primary'
| 'success'
| 'warning'
| 'danger'
| 'info'
| null;
/**
* 文本大小
*/
export type TextSize =
| 'xxxl'
| 'xxl'
| 'xl'
| 'lg'
| 'md'
| 'base'
| 'sm'
| 'xs'
| null;
/**
* 图标
*/
export type TextIcon = string | Component;