Files
main_frontend/src/shared/ui/CircularProgress/model/CircularProgress.d.ts
T
2026-01-29 00:57:22 +03:00

12 lines
249 B
TypeScript

export interface ICircularProgressProps {
percentage: number
className?: string
bgClassName?: string
valueClassName?: string
color?: string
size?: number
strokeWidth?: number
strokeLinecap?: "butt" | "round" | "square"
ariaLabel?: string
}