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;
