Files
video-gen/video-gen-admin/node_modules/antd/lib/spin/Indicator/index.d.ts
T
2026-05-25 17:08:18 +08:00

10 lines
280 B
TypeScript

import * as React from 'react';
export interface IndicatorProps {
prefixCls: string;
indicator?: React.ReactNode;
percent?: number;
className?: string;
style?: React.CSSProperties;
}
export default function Indicator(props: IndicatorProps): React.JSX.Element;