{ "type": "composition", "npmDependencies": [], "fileDependencies": [], "id": "circular-progress", "file": { "name": "circular-progress.tsx", "content": "import { CircularProgress as Progress } from \"@chakra-ui/react\"\nimport type { SystemStyleObject } from \"@chakra-ui/react\"\nimport { forwardRef } from \"react\"\n\nexport interface CircularProgressProps extends Progress.RootProps {\n showValue?: boolean\n trackColor?: SystemStyleObject[\"stroke\"]\n capIsRound?: boolean\n}\n\nexport const CircularProgress = forwardRef<\n HTMLDivElement,\n CircularProgressProps\n>(function CircularProgress(props, ref) {\n const { showValue, trackColor, capIsRound, color, ...rest } = props\n return (\n \n {showValue && {props.value}}\n \n \n \n \n \n )\n})\n" }, "component": "CircularProgress" }