{"id":27275163,"url":"https://github.com/continuous-foundation/scienceicons","last_synced_at":"2025-06-24T15:06:24.424Z","repository":{"id":65185380,"uuid":"586164513","full_name":"continuous-foundation/scienceicons","owner":"continuous-foundation","description":"Open science SVG icons, by Continuous Science Foundation.","archived":false,"fork":false,"pushed_at":"2025-04-25T17:08:26.000Z","size":473,"stargazers_count":7,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-17T03:05:06.955Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/continuous-foundation.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2023-01-07T06:45:25.000Z","updated_at":"2025-06-12T12:38:12.000Z","dependencies_parsed_at":"2024-11-02T03:31:37.223Z","dependency_job_id":"0945377e-a051-45d6-a918-1ed6c6d075d3","html_url":"https://github.com/continuous-foundation/scienceicons","commit_stats":{"total_commits":33,"total_committers":2,"mean_commits":16.5,"dds":"0.33333333333333337","last_synced_commit":"36e43cbc83cc46334d0167827220ab1d9160610c"},"previous_names":["continuous-foundation/scienceicons"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/continuous-foundation/scienceicons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/continuous-foundation%2Fscienceicons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/continuous-foundation%2Fscienceicons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/continuous-foundation%2Fscienceicons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/continuous-foundation%2Fscienceicons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/continuous-foundation","download_url":"https://codeload.github.com/continuous-foundation/scienceicons/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/continuous-foundation%2Fscienceicons/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261700468,"owners_count":23196501,"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":"2025-04-11T15:30:57.925Z","updated_at":"2025-06-24T15:06:24.414Z","avatar_url":"https://github.com/continuous-foundation.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  Open science SVG icons, by Continuous Science Foundation. \u003cbr\u003eAvailable as basic SVG icons and via first-party \u003ca href=\"#react\"\u003eReact\u003c/a\u003e and \u003ca href=\"#vue\"\u003eVue\u003c/a\u003e libraries.\n\u003cp\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/continuous-foundation/scienceicons\"\u003e\u003cstrong\u003eBrowse scienceicons \u0026rarr;\u003c/strong\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/continuous-foundation/scienceicons/releases\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/scienceicons\" alt=\"Latest Release\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/continuous-foundation/scienceicons/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/npm/l/scienceicons.svg\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## React\n\nFirst, install `@scienceicons/react` from npm:\n\n```sh\nnpm install @scienceicons/react\n```\n\nNow each icon can be imported individually as a React component:\n\n```js\nimport { OpenAccessIcon } from '@scienceicons/react/24/solid';\n\nfunction MyComponent() {\n  return (\n    \u003cdiv\u003e\n      \u003cOpenAccessIcon className=\"h-6 w-6 text-blue-500\" /\u003e\n      \u003cp\u003e...\u003c/p\u003e\n    \u003c/div\u003e\n  );\n}\n```\n\nThe 24x24 outline icons can be imported from `@scienceicons/react/24/outline`, the 24x24 solid icons can be imported from `@scienceicons/react/24/solid`, and the 20x20 solid icons can be imported from `@scienceicons/react/20/solid`.\n\nIcons use an upper camel case naming convention and are always suffixed with the word `Icon`.\n\n[Browse the full list of icon names on UNPKG \u0026rarr;](https://unpkg.com/browse/@scienceicons/react/24/solid/)\n\n## Vue\n\n_Note that this library currently only supports Vue 3._\n\nFirst, install `@scienceicons/vue` from npm:\n\n```sh\nnpm install @scienceicons/vue\n```\n\nNow each icon can be imported individually as a Vue component:\n\n```vue\n\u003ctemplate\u003e\n  \u003cdiv\u003e\n    \u003cOpenAccessIcon class=\"w-6 h-6 text-blue-500\" /\u003e\n    \u003cp\u003e...\u003c/p\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport { OpenAccessIcon } from '@scienceicons/vue/24/solid';\n\nexport default {\n  components: { OpenAccessIcon },\n};\n\u003c/script\u003e\n```\n\nThe 24x24 outline icons can be imported from `@scienceicons/vue/24/outline`, the 24x24 solid icons can be imported from `@scienceicons/vue/24/solid`, and the 20x20 solid icons can be imported from `@scienceicons/vue/20/solid`.\n\nIcons use an upper camel case naming convention and are always suffixed with the word `Icon`.\n\n[Browse the full list of icon names on UNPKG \u0026rarr;](https://unpkg.com/browse/@scienceicons/vue/24/solid/)\n\n# Typst\n\n```typst\n#import \"@preview/scienceicons:0.1.0\": open-access-icon\n\nThis article is Open Access #open-access-icon(color: orange, height: 1.1em, baseline: 20%)\n```\n\n![](https://github.com/continuous-foundation/scienceicons/blob/main/typst/docs/example.png?raw=true)\n\nAll icons:\n\n![](https://github.com/continuous-foundation/scienceicons/blob/main/typst/docs/icons.png?raw=true)\n\n[See more](https://typst.app/universe/package/scienceicons/)\n\n# MyST Markdown\n\nA MyST Markdown role for science icons and an accompanying react based renderer\n\n## Installation\n\nCopy the file `scienceicons.mjs` from `dist/` intoyour local `mystmd` project and add it to the list of plugins in `myst.yml`:\n\n```yaml\nproject:\n  plugins:\n    - scienceicons.mjs\n```\n\n## Using the Role\n\nTo use the role simply add it to your MyST markdown like so:\n\n```markdown\nPraesent mattis viverra lacus, {scienceicon}`twitter` at cursus eros hendrerit nec {scienceicon}`curvenote`.\n```\n\nAnd the relevant icons will appear inline in your text. Use the icons in links by:\n\n```markdown\n... metus ut consequat [{scienceicon}`twitter`](https://x.com/@curvenote) dignissim ante sem ...\n```\n\n[Browse the full list of icon names on UNPKG \u0026rarr;](https://unpkg.com/browse/@scienceicons/myst@latest/src/names.json)\n\n\u003e [!TIP]\n\u003e MyST Markdown's plugin loading system is still developing, [look out for updates](https://mystmd.org/guide/plugins) on easier ways to access and load plugins.\n\n## Using the renderer\n\nMethods for installing a bundled renderer are still in development by the MyST Markdown project and Curvenote. In the meantime you can install this package from git (`git+https://github.com/\u003corg\u003e/\u003crepo\u003e.git#\u003cbranch\u003e`) and include in your build.\n\n## License\n\nThis library is primarily based on [heroicons](https://www.npmjs.com/package/heroicons), see [MIT license](https://github.com/tailwindlabs/heroicons/blob/master/LICENSE). For other cases, license and attribution information can be found in comments within individual `.svg` files.\n\n## License\n\nThis library is MIT licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontinuous-foundation%2Fscienceicons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcontinuous-foundation%2Fscienceicons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontinuous-foundation%2Fscienceicons/lists"}