{"id":18494178,"url":"https://github.com/workleap/ov-igloo-icons","last_synced_at":"2025-09-03T17:35:06.458Z","repository":{"id":37848216,"uuid":"388493262","full_name":"workleap/ov-igloo-icons","owner":"workleap","description":"A set of icons handcrafted by Officevibe","archived":false,"fork":false,"pushed_at":"2025-02-18T01:43:45.000Z","size":1374,"stargazers_count":2,"open_issues_count":1,"forks_count":3,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-08T00:49:10.806Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://igloo.officevibe.design/icons","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":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","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":"2021-07-22T14:34:21.000Z","updated_at":"2025-02-18T01:43:50.000Z","dependencies_parsed_at":"2025-02-18T02:47:18.932Z","dependency_job_id":null,"html_url":"https://github.com/workleap/ov-igloo-icons","commit_stats":{"total_commits":75,"total_committers":7,"mean_commits":"10.714285714285714","dds":0.56,"last_synced_commit":"587bb021ed7829e30711c772f352e18b32e543f5"},"previous_names":["workleap/ov-igloo-icons","gsoft-inc/ov-igloo-icons"],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fov-igloo-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fov-igloo-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fov-igloo-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workleap%2Fov-igloo-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/workleap","download_url":"https://codeload.github.com/workleap/ov-igloo-icons/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247939986,"owners_count":21021884,"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","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-11-06T13:18:16.156Z","updated_at":"2025-09-03T17:35:06.410Z","avatar_url":"https://github.com/workleap.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `@igloo-ui/icons`\n\nA set of icons handcrafted by Officevibe\n\n## Getting started\n\nTo install @igloo-ui/icons in your project, you will need to run the following command using [npm](https://www.npmjs.com/):\n\n```\nnpm install @igloo-ui/icons\n```\n\nIf you prefer [Yarn](https://classic.yarnpkg.com/en/), use the following command instead:\n\n```\nyarn add @igloo-ui/icons\n```\n\n## Usage\n\nIcons in this package support the following sizes: `16`, `24`, and `32` pixels. You can import an icon component into your project by referring to its name:\n\n```js\nimport Alert from '@igloo-ui/icons/dist/Alert';\n\nfunction MyComponent() {\n  return (\n    \u003c\u003e\n      \u003cAlert /\u003e Uh oh, something went wrong\n    \u003c/\u003e\n  );\n}\n```\n\n### Changing the size\n\nYou can change the size of an icon by passing a prop `size` which takes `small`, `medium` and `large`. For example:\n\n```js\nimport Clock from '@igloo-ui/icons/dist/Calendar';\n\nfunction MyComponent() {\n  return (\n    \u003c\u003e\n      \u003cCalendar size=\"large\" /\u003e Monday, Feb 2022\n    \u003c/\u003e\n  );\n}\n```\n\n| Prop     | Rendered Size                |\n| -------- | ---------------------------- |\n| `small`  | 16px                         |\n| `medium` | 24px is the **default** size |\n| `Large`  | 32px                         |\n\n### Changing the color\n\nYou can change the color of an icon by passing in a custom class name that sets this property.\n\nFirst install tokens\n\n`yarn add @igloo-ui/tokens`\n\nFor example:\n\n```css\n@import '@igloo-ui/tokens/dist/variables.css';\n\n.my-custom-class {\n  color: var(--dandelion-600);\n}\n```\n\n```js\nimport Alert from '@igloo-ui/icons/dist/Alert';\n\nfunction MyComponent() {\n  return (\n    \u003c\u003e\n      \u003cAlert className=\"my-custom-class\" /\u003e Uh oh, something went wrong\n    \u003c/\u003e\n  );\n}\n```\n\n### Accessibility\n\nIf the icon used without text, then use the `ariaLabel` prop to give the icon a text alternative. The label should describe the icon.\n\n```js\nimport Alert from '@igloo-ui/icons/dist/Alert';\n\nfunction MyComponent() {\n  return \u003cAlert ariaLabel=\" Uh oh, something went wrong\" /\u003e;\n}\n```\n\n## SVG files\n\nFor projects that don’t use React, icons are also available as \\*.svg files in the `dist/svg` folder.\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/workleap/gsoft-license/blob/master/LICENSE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkleap%2Fov-igloo-icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fworkleap%2Fov-igloo-icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkleap%2Fov-igloo-icons/lists"}