import * as React from 'react'; import classNames from 'classnames'; import Progress from './Progress'; export interface IndicatorProps { prefixCls: string; percent?: number; className?: string; style?: React.CSSProperties; } export default function Looper(props: IndicatorProps) { const { prefixCls, percent = 0, className, style } = props; const dotClassName = `${prefixCls}-dot`; const holderClassName = `${dotClassName}-holder`; const hideClassName = `${holderClassName}-hidden`; // ===================== Render ===================== return ( <> 0 && hideClassName)} style={style} > {[1, 2, 3, 4].map((i) => ( ))} ); }