export type TextColor = | 'primary' | 'danger' | 'success' | 'warning' | 'info' | 'exception' | 'error' | 'paragraph' | 'secondary' | 'description' | 'placeholder' | 'disabled' | 'inverse' | 'current'; export interface TextProps { size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'current'; align?: 'left' | 'center' | 'right' | 'justify'; color?: TextColor; italic?: boolean; truncate?: boolean; block?: boolean; bold?: boolean; uppercase?: boolean; underline?: boolean; content?: string; preIcon?: string; postIcon?: string; iconSize?: number; isSvgIcon?: boolean; hoverable?: boolean; }