PromoCursed/node_modules/antd/lib/spin/Indicator/Progress.d.ts

8 lines
195 B
TypeScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
import * as React from 'react';
export interface ProgressProps {
prefixCls: string;
percent: number;
}
declare const Progress: React.FC<Readonly<ProgressProps>>;
export default Progress;