{"id":28424523,"url":"https://github.com/psparwez/react-hot-spinner","last_synced_at":"2026-03-07T07:31:01.319Z","repository":{"id":292132852,"uuid":"979090703","full_name":"psparwez/react-hot-spinner","owner":"psparwez","description":"A customizable spinner component for React","archived":false,"fork":false,"pushed_at":"2025-08-28T10:40:37.000Z","size":182,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T10:52:49.123Z","etag":null,"topics":["react-hot-spinner","react-spinner","react-spinner-loader","react-spinners","spinner","spinners-react"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/react-hot-spinner","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/psparwez.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,"zenodo":null}},"created_at":"2025-05-07T01:35:00.000Z","updated_at":"2025-08-28T10:48:18.000Z","dependencies_parsed_at":"2025-06-26T03:41:53.991Z","dependency_job_id":null,"html_url":"https://github.com/psparwez/react-hot-spinner","commit_stats":null,"previous_names":["psparwez/react-hot-spinner"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/psparwez/react-hot-spinner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psparwez%2Freact-hot-spinner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psparwez%2Freact-hot-spinner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psparwez%2Freact-hot-spinner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psparwez%2Freact-hot-spinner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/psparwez","download_url":"https://codeload.github.com/psparwez/react-hot-spinner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psparwez%2Freact-hot-spinner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["react-hot-spinner","react-spinner","react-spinner-loader","react-spinners","spinner","spinners-react"],"created_at":"2025-06-05T10:12:44.087Z","updated_at":"2026-03-07T07:31:01.302Z","avatar_url":"https://github.com/psparwez.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-hot-spinner\n\nA customizable spinner component for React applications with TypeScript support.\n\n![](https://via.placeholder.com/640x320.png?text=React+Hot+Spinner)\n\n\n\u003cimg src=\"./banner.gif\" width=\"100%\" alt=\"React Hot Spinner\" /\u003e\n\n## Installation\n\n```bash\nnpm install react-hot-spinner\n# or\nyarn add react-hot-spinner\n```\n\n## Usage\n\n```jsx\nimport React from 'react';\nimport { Spinner } from 'react-hot-spinner';\n\nfunction App() {\n  return (\n    \u003cdiv className=\"app\"\u003e\n      \u003ch1\u003eLoading Example\u003c/h1\u003e\n      \u003cSpinner/\u003e\n    \u003c/div\u003e\n  );\n}\n\nexport default App;\n```\n\n## Props\n\n| Prop | Type | Default | Description |\n|------|------|---------|-------------|\n| `size` | `string \\| number` | `'50px'` | Size of the spinner. If a number is provided, it will be treated as pixels. |\n| `color` | `white \\| black \\| string` | `'#f0f0f0'` | Color of the spinner blades. |\n| `className` | `string` | `''` | Additional CSS class name(s) to apply to the spinner container. |\n| `center` | `boolean` | `false` | Center the spinner in its parent container. |\n\n## Examples\n\n### Basic Usage\n\n```jsx\nimport { Spinner } from 'react-hot-spinner';\n\n// Default spinner\n\u003cSpinner /\u003e\n\n// Custom size (in pixels)\n\u003cSpinner size={100} /\u003e\n\n// Custom size (with CSS units)\n\u003cSpinner size=\"5rem\" /\u003e\n\n// Custom color\n\u003cSpinner color=\"#ff0000\" /\u003e\n\n// Centered in parent\n\u003cSpinner center /\u003e\n\n// With custom class name\n\u003cSpinner className=\"my-custom-spinner\" /\u003e\n\n// Combining multiple props\n\u003cSpinner size={80} color=\"#3498db\" center className=\"loading-indicator\" /\u003e\n```\n\n## Development\n\n```bash\n# Install dependencies\nnpm install\n\n# Build the package\nnpm run build\n\n# Watch mode\nnpm run dev\n\n# Run tests\nnpm test\n```\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsparwez%2Freact-hot-spinner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpsparwez%2Freact-hot-spinner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsparwez%2Freact-hot-spinner/lists"}