MCPcopy
hub / github.com/pmh1314520/WebRPA / ProgressProps

Interface ProgressProps

frontend/src/components/ui/progress.tsx:6–13  ·  view source on GitHub ↗

* Progress 组件 - 进度条 * 视觉:浅灰底 + 品牌蓝填充 + 流光高亮

Source from the content-addressed store, hash-verified

4 */
5
6interface ProgressProps {
7 value?: number
8 className?: string
9 /** 进度条颜色变体 */
10 variant?: 'default' | 'success' | 'warning' | 'danger'
11 /** 不确定进度(流动动画) */
12 indeterminate?: boolean
13}
14
15export function Progress({
16 value = 0,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected