{"id":22575111,"url":"https://github.com/superraytin/react-simple-circular-progress","last_synced_at":"2026-02-12T05:10:46.614Z","repository":{"id":266003145,"uuid":"897083669","full_name":"superRaytin/react-simple-circular-progress","owner":"superRaytin","description":"A simple circular progress indicator component for React","archived":false,"fork":false,"pushed_at":"2024-12-02T02:38:07.000Z","size":239,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-24T11:29:07.893Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/superRaytin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-02T01:51:25.000Z","updated_at":"2024-12-20T03:12:55.000Z","dependencies_parsed_at":"2024-12-02T08:31:46.284Z","dependency_job_id":null,"html_url":"https://github.com/superRaytin/react-simple-circular-progress","commit_stats":null,"previous_names":["superraytin/react-simple-circular-progress"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/superRaytin/react-simple-circular-progress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superRaytin%2Freact-simple-circular-progress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superRaytin%2Freact-simple-circular-progress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superRaytin%2Freact-simple-circular-progress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superRaytin%2Freact-simple-circular-progress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/superRaytin","download_url":"https://codeload.github.com/superRaytin/react-simple-circular-progress/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superRaytin%2Freact-simple-circular-progress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272996426,"owners_count":25028128,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-08T03:09:12.792Z","updated_at":"2026-02-12T05:10:41.597Z","avatar_url":"https://github.com/superRaytin.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-simple-circular-progress\n\nA simple circular progress indicator component for React\n\n[![NPM version][npm-image]][npm-url]\n[![Downloads][downloads-image]][npm-url]\n\n[npm-url]: https://npmjs.org/package/react-simple-circular-progress\n[downloads-image]: http://img.shields.io/npm/dm/react-simple-circular-progress.svg\n[npm-image]: http://img.shields.io/npm/v/react-simple-circular-progress.svg\n\n[React Native implementation of react-simple-circular-progress](https://github.com/superRaytin/react-native-simple-circular-progress)\n\n## Screenshots\n\n![](examples/images/screenshot.png)\n\n## Installation\n\n```\nyarn add react-simple-circular-progress\n```\n\nor\n\n```\nnpm i react-simple-circular-progress\n```\n\n## Examples\n\n```jsx\n\u003cCircularProgress\n  size={106}\n  percent={75}\n  progressBarColor={[[0, '#2C40F3'], [100, '#C2E1FF']]}\n\u003e\n  \u003cdiv className='circular-indicator-content'\u003e\n    \u003cspan\u003eScores\u003c/span\u003e\n    \u003cspan\u003e5846\u003c/span\u003e\n  \u003c/div\u003e\n\u003c/CircularProgress\u003e\n```\n\n![](examples/images/demo1.png)\n\n```jsx\n\u003cCircularProgress\n  size={106}\n  percent={41}\n  progressBarColor={[[0, '#1CC490'], [100, '#CEFFBD']]}\n  scaleAngles={[0, -45, -90, -135, 180]}\n  scaleOpacity={0.15}\n  scaleColor='#888'\n\u003e\n  \u003cdiv className='circular-indicator-content'\u003e\n    \u003cspan\u003e41%\u003c/span\u003e\n  \u003c/div\u003e\n\u003c/CircularProgress\u003e\n```\n\n![](examples/images/demo2.png)\n\n```jsx\n\u003cCircularProgress\n  size={106}\n  percent={75}\n  progressBarColor={[[0, '#9C3AE9'], [100, '#CCBDFF']]}\n  scaleAngles={[0, -45, -90, -135, 180]}\n  scaleOpacity={0.15}\n\u003e\n  \u003cdiv className='circular-indicator-content'\u003e\n    \u003cspan\u003eStatus\u003c/span\u003e\n    \u003cspan\u003eGood\u003c/span\u003e\n  \u003c/div\u003e\n\u003c/CircularProgress\u003e\n```\n\n![](examples/images/demo3.png)\n\n`circular-progress-content` styles:\n\n```css\n.circular-progress-content: {\n  position: absolute;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  align-items: center;\n}\n```\n\n## API\n\n| prop      | type  | default value |\n| --------- | ------------- | ------------- |\n| `size`    | `number` |     |\n| `percent` | `number` | 1 |\n| `gapAngle` | `number` | 90 |\n| `backgroundBarColor` | `string` | '#F5F5F4' |\n| `progressBarWidth` | `number` | 15 |\n| `progressBarColor` | `string` `[number, string][]` | '#2C40F3' |\n| `progressBarOpacity` | `number` | 1 |\n| `progressFillColor` | `string` | 'none' |\n| `scaleAngles` | `number[]` |  |\n| `scaleWidth` | `number` | 2 |\n| `scaleColor` | `string` | '#2a2a2a' |\n| `scaleOpacity` | `number` | 0.1 |\n| `svgExtraProps` | `Record\u003cstring, any\u003e` | {} |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperraytin%2Freact-simple-circular-progress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuperraytin%2Freact-simple-circular-progress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperraytin%2Freact-simple-circular-progress/lists"}