{"id":23174014,"url":"https://github.com/zebradevs/zeta-icons","last_synced_at":"2025-10-24T00:57:49.677Z","repository":{"id":247359418,"uuid":"823665651","full_name":"ZebraDevs/zeta-icons","owner":"ZebraDevs","description":"An icon library for the Zeta design system.","archived":false,"fork":false,"pushed_at":"2025-10-15T10:20:40.000Z","size":77674,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-16T03:10:26.190Z","etag":null,"topics":["flutter","icons","ts","web","zeta"],"latest_commit_sha":null,"homepage":"https://zeta-icons.web.app","language":"Dart","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/ZebraDevs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.MD","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-03T13:21:24.000Z","updated_at":"2025-10-15T10:20:43.000Z","dependencies_parsed_at":"2024-08-05T09:40:00.412Z","dependency_job_id":"b1b0b5df-7e29-4ffe-909c-93bfc5f9377e","html_url":"https://github.com/ZebraDevs/zeta-icons","commit_stats":null,"previous_names":["zebradevs/zeta-icons"],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/ZebraDevs/zeta-icons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZebraDevs%2Fzeta-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZebraDevs%2Fzeta-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZebraDevs%2Fzeta-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZebraDevs%2Fzeta-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZebraDevs","download_url":"https://codeload.github.com/ZebraDevs/zeta-icons/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZebraDevs%2Fzeta-icons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280718613,"owners_count":26379163,"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-23T02:00:06.710Z","response_time":142,"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":["flutter","icons","ts","web","zeta"],"created_at":"2024-12-18T05:18:56.184Z","updated_at":"2025-10-24T00:57:49.671Z","avatar_url":"https://github.com/ZebraDevs.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zeta-icons\n\nAn icon library for the Zeta design system.\n\n# Web\n\nSee [Zeta Web](https://github.com/ZebraDevs/zeta-web) for information on using the icons with our web components.\n\nOtherwise, icons can be installed independently using the instructions below.\n\n## Installation\n\nZeta Icons is hosted on [npm](https://www.npmjs.com/package/@zebra-fed/zeta-icons), and can be installed with:\n\n`npm i @zebra-fed/zeta-icons` or `yarn add @zebra-fed/zeta-icons`\n\n## Usage\n\nThe zeta-icons fonts can be imported into any web project. There are two variants, `zeta-icons-round` and `zeta-icons-sharp`, for round and sharp icons respectively.\nEither one or both of these need to be imported via css\n\n```css\n@font-face {\n  font-family: zeta-icons-round;\n  font-weight: bold;\n  src: url(\"@zebra-fed/zeta-icons/font/zeta-icons-round.woff2\");\n}\n\n.icon {\n  font-family: \"zeta-icons-round\";\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  text-rendering: optimizeLegibility;\n  -moz-osx-font-smoothing: grayscale;\n  font-feature-settings: \"liga\";\n}\n```\n\nIf you are not using a framework that optimizes node modules imports, you may need to point directly to the font:\n\n```css\nsrc: url(\"./node_modules/@zebra-fed/zeta-icons/outputs/font/zeta-icons-round.woff2\");\n```\n\nZeta icons use **_ligatures_**, which allows for the icons to be rendered by simply entering their name. These icons behave as text characters, and so are styled as such:\n\n```html\n\u003cspan class=\"icon\" style=\"font-size: 24px; color: blue;\"\u003ealarm\u003c/span\u003e\n```\n\n---\n\n# Flutter\n\nZeta Icons for Flutter are part of [zeta_flutter](https://github.com/ZebraDevs/zeta_flutter).\n\n## Installation\n\nZeta flutter is hosted on [pub.dev](https://pub.dev/packages/zeta_flutter/), and can be installed with:\n\n`flutter pub add zeta_flutter`\n\n## Usage\n\nThe `ZetaIcons` class contains all the zeta icons, in both round and sharp variants.\nThese can be displayed using the `Icon` class built into Flutter.\n\n```dart\n  Icon(ZetaIcons.activity_round, color: Colors.red, size: 24)\n```\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eTesting\u003c/summary\u003e\n\n\u003e 🚧 **Note**: This does not work with all versions of node - tested and working with node 18.17.0\n\nBefore any tests are ran, make sure to create an `env.test.local` file with the value of `FIGMA_ACCESS_TOKEN` set to a Figma token which has access to the [ZDS Assets Figma](https://www.figma.com/file/VQ7Aa3rDYB7mgpToI3bZ4D/%F0%9F%A6%93-ZDS---Assets?type=design\u0026mode=design\u0026t=Ry8n3GUYc8uvxhMt-0) and the [Test Figma](https://www.figma.com/file/oIiGXVNKX4KjppcGxOEbZa/IconsTestPage?type=design\u0026node-id=156-1674\u0026mode=design\u0026t=pBj7y8J7b6q906it-0).\n\nTo test the functionality of the scripts against a test Figma file with a subset of the icons, run\n\n`yarn run test`\n\nand inspect the outputs in test/outputs/test-figma.\n\nTo run a full test against the ZDS Assets Figma, run\n\n`yarn run test:build`\n\nand inspect the outputs in test/outputs/zds.\n\n\u003c/details\u003e\n\n## Licensing\n\nThis software is licensed with the MIT license (see [LICENSE](./LICENSE)).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzebradevs%2Fzeta-icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzebradevs%2Fzeta-icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzebradevs%2Fzeta-icons/lists"}