* Progress 组件 - 进度条 * 视觉:浅灰底 + 品牌蓝填充 + 流光高亮
| 4 | */ |
| 5 | |
| 6 | interface ProgressProps { |
| 7 | value?: number |
| 8 | className?: string |
| 9 | /** 进度条颜色变体 */ |
| 10 | variant?: 'default' | 'success' | 'warning' | 'danger' |
| 11 | /** 不确定进度(流动动画) */ |
| 12 | indeterminate?: boolean |
| 13 | } |
| 14 | |
| 15 | export function Progress({ |
| 16 | value = 0, |
nothing calls this directly
no outgoing calls
no test coverage detected