antd-mobile
Version:
基于 React 的移动设计规范实现
16 lines (15 loc) • 346 B
TypeScript
interface ProgressProps {
percent?: number;
position?: 'fixed' | 'normal';
unfilled?: 'show' | 'hide';
style?: any;
wrapStyle?: any;
/** rn only */
wrapWidth?: number;
styles?: any;
/** web only */
prefixCls?: string;
className?: string;
appearTransition?: boolean;
}
export default ProgressProps;