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