Files
2026-01-16 02:20:32 +00:00

7 lines
187 B
TypeScript

import * as React from 'react';
export interface IndicatorProps {
prefixCls: string;
percent?: number;
}
export default function Looper(props: IndicatorProps): React.JSX.Element;