mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-28 07:34:56 +00:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
export interface CircularProgressProps {
|
|
value: number
|
|
max?: number
|
|
size?: 'sm' | 'md' | 'lg' | 'xl'
|
|
showLabel?: boolean
|
|
strokeWidth?: number
|
|
className?: string
|
|
}
|