tdesign-mobile-vue
Version:
tdesign-mobile-vue
13 lines (12 loc) • 442 B
TypeScript
import { TNode } from '../common';
export interface TdProgressProps {
color?: string | Array<string> | Record<string, string>;
label?: string | boolean | TNode;
percentage?: number;
status?: StatusEnum;
strokeWidth?: string | number;
theme?: ThemeEnum;
trackColor?: string;
}
export declare type StatusEnum = 'success' | 'error' | 'warning' | 'active';
export declare type ThemeEnum = 'line' | 'plump' | 'circle';