minishouyin/node_modules/antd/es/spin/Indicator/Progress.d.ts

8 lines
195 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
export interface ProgressProps {
prefixCls: string;
percent: number;
}
declare const Progress: React.FC<Readonly<ProgressProps>>;
export default Progress;