{"id":15097173,"url":"https://github.com/workleap/storybook-icon-gallery","last_synced_at":"2025-10-08T02:31:04.395Z","repository":{"id":57371535,"uuid":"230457047","full_name":"workleap/storybook-icon-gallery","owner":"workleap","description":"An icon gallery for Storybook docs that support multiple icon variants","archived":true,"fork":false,"pushed_at":"2020-09-04T03:44:14.000Z","size":1411,"stargazers_count":9,"open_issues_count":6,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-17T01:41:14.153Z","etag":null,"topics":["storybook"],"latest_commit_sha":null,"homepage":"https://www.gsoft.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/workleap.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":"2019-12-27T14:22:01.000Z","updated_at":"2023-01-15T05:42:22.000Z","dependencies_parsed_at":"2022-09-16T00:03:45.478Z","dependency_job_id":null,"html_url":"https://github.com/workleap/storybook-icon-gallery","commit_stats":null,"previous_names":["gsoft-inc/storybook-icon-gallery"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/workleap/storybook-icon-gallery","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fstorybook-icon-gallery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fstorybook-icon-gallery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fstorybook-icon-gallery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fstorybook-icon-gallery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/workleap","download_url":"https://codeload.github.com/workleap/storybook-icon-gallery/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fstorybook-icon-gallery/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278877544,"owners_count":26061465,"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-08T02:00:06.501Z","response_time":56,"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":["storybook"],"created_at":"2024-09-25T16:05:02.800Z","updated_at":"2025-10-08T02:31:04.027Z","avatar_url":"https://github.com/workleap.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Storybook Icon Gallery\n\n\u003ca href=\"https://circleci.com/gh/gsoft-inc/storybook-icon-gallery/tree/master\"\u003e\u003cimg alt=\"build\" src=\"https://img.shields.io/circleci/build/github/gsoft-inc/storybook-icon-gallery/master\"\u003e\u003c/a\u003e\n\u003ca href=\"https://david-dm.org/gsoft-inc/storybook-icon-gallery?type=dev\" title=\"devDependencies\"\u003e\u003cimg src=\"https://david-dm.org/gsoft-inc/storybook-icon-gallery/dev-status.svg\"/\u003e\u003c/a\u003e\n[![Netlify Status](https://api.netlify.com/api/v1/badges/df98c158-8a37-4882-b8b9-59540f32c204/deploy-status)](https://app.netlify.com/sites/storybook-icon-gallery/deploys)\n\nAn icon gallery for Storybook docs that support multiple icon variants.\n\n[![Icon Gallery](https://raw.githubusercontent.com/gsoft-inc/storybook-icon-gallery/master/assets/teaser.png)](https://storybook-icon-gallery.netlify.com/)\n\n## Installation\n\nInstall the NPM package:\n\n```bash\nnpm i -D storybook-icon-gallery\n```\n\nThen import the icon gallery components:\n\n```js\nimport { IconGallery } from \"storybook-icon-gallery\";\n```\n\nAnd configure your icons:\n\n```jsx\n\u003cIconGallery\u003e\n    \u003cIconGallery.Variants name=\"add\"\u003e\n        \u003cIconGallery.Variant size={24}\u003e\n            \u003cAddIcon24 /\u003e\n        \u003c/IconGallery.Variant\u003e\n    \u003c/IconGallery.Variants\u003e\n\u003c/IconGallery\u003e\n```\n\nFull usage documentation available at: https://storybook-icon-gallery.netlify.com/\n\n## Maintainers\n\nThe following documentation is only for the maintainers of this repository.\n\n### Installation\n\nClone the repository:\n\n```bash\ngit clone https://github.com/gsoft-inc/storybook-icon-gallery.git\n```\n\nThen, install the dependencies for all the packages with Yarn (or NPM):\n\n```bash\nyarn install\n```\n\n### Development process\n\nOnce the project is installed you can start developping with Storybook by executing the following script:\n\n```bash\nyarn start-sb\n```\n\nIf you want to start Storybook in `--docs` mode, use the following script:\n\n```bash\nyarn start-docs\n```\n\nAt some point you might need to build a version of Storybook for production:\n\n```bash\nyarn build:sb\nyarn serve-sb\n\nyarn build:docs\nyarn serve-docs\n```\n\nOr test the actual icon gallery component for production:\n\n```bash\nyarn build:pkg\n```\n\nIf something is messed up and you need a clean project, use the `reset` script:\n\n```bash\nyarn reset\n```\n\n### Release\n\n#### Process\n\nTo ensure that the consumers understand the impact of updating this package, every release should follow [semantic versioning](https://semver.org/).\n\n#### Do the actual release\n\nBefore you release, make sure you have **write access** to the NPM package and that you are [logged in to NPM](https://docs.npmjs.com/logging-in-to-an-npm-enterprise-registry-from-the-command-line).\n\nTo release, open a terminal at the root of the project and execute the following commands:\n\n```bash\nyarn release\n```\n\nThe release flow will automatically create a new [Github release](https://github.com/gsoft-inc/storybook-icon-gallery/releases) for the current release.\n\nMake sure to document all the changes contained in the current release and dont forget to **publish** the release.\n\nIf you updated the documentation, make sure it's deployed. \n\nTo do so:\n\n1. Go to [Netlify web app](https://app.netlify.com/sites/storybook-icon-gallery/deploys)\n2. Select the latest build on master\n3. Click on \"Publish deploy\"\n\n## License\n\nCopyright © 2019, GSoft inc. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.\n\n[![With ❤️ from ShareGate](https://raw.githubusercontent.com/gsoft-inc/gsoft-oss-assets/master/banner-thanks.png)](https://www.sharegate.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkleap%2Fstorybook-icon-gallery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fworkleap%2Fstorybook-icon-gallery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkleap%2Fstorybook-icon-gallery/lists"}