{"id":15317340,"url":"https://github.com/ascii-16/react-skeleton-loader","last_synced_at":"2025-10-07T02:27:55.991Z","repository":{"id":57344849,"uuid":"372937381","full_name":"ascii-16/react-skeleton-loader","owner":"ascii-16","description":null,"archived":false,"fork":false,"pushed_at":"2021-06-04T07:47:57.000Z","size":488,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T18:52:00.237Z","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/ascii-16.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}},"created_at":"2021-06-01T19:15:05.000Z","updated_at":"2021-06-04T07:48:00.000Z","dependencies_parsed_at":"2022-09-16T07:51:27.275Z","dependency_job_id":null,"html_url":"https://github.com/ascii-16/react-skeleton-loader","commit_stats":null,"previous_names":["akhilchandrangit/react-skeleton-loader"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ascii-16/react-skeleton-loader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ascii-16%2Freact-skeleton-loader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ascii-16%2Freact-skeleton-loader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ascii-16%2Freact-skeleton-loader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ascii-16%2Freact-skeleton-loader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ascii-16","download_url":"https://codeload.github.com/ascii-16/react-skeleton-loader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ascii-16%2Freact-skeleton-loader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278708242,"owners_count":26031977,"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-10-07T02:00:06.786Z","response_time":59,"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-10-01T08:56:37.252Z","updated_at":"2025-10-07T02:27:55.961Z","avatar_url":"https://github.com/ascii-16.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eWelcome to react-skeleton-load 👋\u003c/h1\u003e\n\u003cp\u003e\n  \u003ca href=\"https://www.npmjs.com/package/react-skeleton-loader\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Version\" src=\"https://img.shields.io/npm/v/react-skeleton-loader.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"#\" target=\"_blank\"\u003e\n    \u003cimg alt=\"License: MIT\" src=\"https://img.shields.io/badge/License-MIT-yellow.svg\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e Skeleton loader for react\n\n### 🏠 [Homepage](https://github.com/akhilchandrangit/react-skeleton-loader)\n\n## Installation and usage\n\nInstall react-skeleton-load\n\n```sh\nnpm i react-skeleton-load\n```\n```sh\nyarn add react-skeleton-load\n```\n\nNow you can import react-skeleton-load in any of your components\n\n```javascript\nimport SkeletonLoader from 'react-skeleton-load';\n\nconst Articles = () =\u003e {\n  return (\n    \u003cSkeletonLoader height={20} width={100} /\u003e\n  )\n}\n```\n\n## Props\n### height (number | string)\nnumber\n\nRequired\n\nHeight of loader(px)\n```javascript\n \u003cSkeletonLoader height={30} /\u003e\n```\n### width (number | string)\nRequired\n\nWidth of loader\n```javascript\n \u003cSkeletonLoader height={30} width={150} /\u003e\n \u003cSkeletonLoader height={30} width=\"50%\" /\u003e\n```\n### count (number)\n\nDefault: 1\n\nSpecifies the number of loaders to be rendered.\n```javascript\n \u003cSkeletonLoader height={30} count={4} /\u003e\n```\n### className (string)\n\nCustom class name for loader element\n```javascript\n \u003cSkeletonLoader height={30} className=\"my-custom-class\" /\u003e\n```\n\n### wrapperClass (string)\n\nCustom class name for wrapper element\n```javascript\n \u003cSkeletonLoader height={30} wrapperClass=\"my-custom-class\" /\u003e\n```\n\n### color (string)\n\nCustom color for loader in hex\n```javascript\n \u003cSkeletonLoader height={30} color=\"#F5A492\" /\u003e\n```\n\n### style (React.CSSProperties)\n\nCustom styles for loader element. Any of the properties in React's CSSProperties can be used.\n```javascript\n \u003cSkeletonLoader height={30} style={{ marginRight: '10px' }} /\u003e\n```\n\n### shape (\"rectangle\" | \"circle\")\n\nDefault: \"rectangle\"\n\nDefines the shape of loader.\n```javascript\n \u003cSkeletonLoader height={30} width={30} shape=\"circle\" /\u003e\n```\n\n### hideAnimation (boolean)\n\nDefault: false\n\nIf set to true, the loader animation will be stopped.\n```javascript\n \u003cSkeletonLoader height={30} width={30} hideAnimation /\u003e\n```\n\n### hideGradient (boolean)\n\nDefault: false\n\nIf set to true, the background gradient will be removed.\n```javascript\n \u003cSkeletonLoader\n  height={30}\n  width={30}\n  color=\"#F5A492\"\n  hideGradient\n/\u003e\n```\n\n\n### borderRadius (number | string)\n\nChanges the border radius of loader.\n```javascript\n \u003cSkeletonLoader height={30} borderRadius={8} /\u003e\n```\n\n## Author\n\n👤 **Akhil**\n\n* Website: https://github.com/akhilchandrangit/react-skeleton-loader\n* Github: [@akhilchandrangit](https://github.com/akhilchandrangit)\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fascii-16%2Freact-skeleton-loader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fascii-16%2Freact-skeleton-loader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fascii-16%2Freact-skeleton-loader/lists"}