{"id":32179619,"url":"https://github.com/multiplyco/heroicons-clojure","last_synced_at":"2026-03-03T16:42:53.550Z","repository":{"id":62434931,"uuid":"382349402","full_name":"multiplyco/heroicons-clojure","owner":"multiplyco","description":"heroicons for Fulcro and Reagent","archived":false,"fork":false,"pushed_at":"2023-02-03T09:43:46.000Z","size":185,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-06T02:47:07.414Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Clojure","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/multiplyco.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-07-02T13:07:26.000Z","updated_at":"2021-10-29T11:09:51.000Z","dependencies_parsed_at":"2023-02-18T05:31:13.549Z","dependency_job_id":null,"html_url":"https://github.com/multiplyco/heroicons-clojure","commit_stats":null,"previous_names":["multiplyco/heroicons-clojure","fluent-development/heroicons-clojure"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/multiplyco/heroicons-clojure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiplyco%2Fheroicons-clojure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiplyco%2Fheroicons-clojure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiplyco%2Fheroicons-clojure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiplyco%2Fheroicons-clojure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/multiplyco","download_url":"https://codeload.github.com/multiplyco/heroicons-clojure/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiplyco%2Fheroicons-clojure/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30052132,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T15:26:47.567Z","status":"ssl_error","status_checked_at":"2026-03-03T15:26:17.132Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-10-21T21:03:44.381Z","updated_at":"2026-03-03T16:42:53.542Z","avatar_url":"https://github.com/multiplyco.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# heroicons-clojure\n\n**DEPRECATED: We now recommend that you use the [heroicons npm lib](https://www.npmjs.com/package/heroicons) instead. Thanks for this time if you've been using and liking this lib ☺️**\n\nConverts the full [heroicons](https://heroicons.com) set for easy use from Clojure and ClojureScript as `.cljc` files.\n\nCurrently we include Hiccup (for Reagent et. al.) and Fulcro definitions.\n\n## Coordinates\n\n[![Clojars Project](https://img.shields.io/clojars/v/to.fluent/heroicons-clojure.svg)](https://clojars.org/to.fluent/heroicons-clojure)\n\n```\nto.fluent/heroicons-clojure {:mvn/version \"1.0.4\"}\n```\n\n## Usage\n\nFor `medium`/`outline` icons, the icon is available at\n\n```clojure\n;; Fulcro\nto.fluent.heroicons-clojure.fulcro.outline.{icon-name}/{icon-name}\n\n;; Reagent\nto.fluent.heroicons-clojure.reagent.outline.{icon-name}/{icon-name}\n```\n\nFor `small`/`solid` icons, the icon is available at\n\n```clojure\n;; Fulcro\nto.fluent.heroicons-clojure.fulcro.solid.{icon-name}/{icon-name}\n\n;; Reagent\nto.fluent.heroicons-clojure.reagent.solid.{icon-name}/{icon-name}\n```\n\n## Example with wrapper\nUsing [Tailwind CSS](https://tailwindcss.com) classes.\n\nFor [Fulcro](https://github.com/fulcrologic/fulcro),\n\n```clojure\n(ns my-file\n  (:require [to.fluent.heroicons-clojure.fulcro.outline.academic-cap :refer [academic-cap]]))\n\n(dom/div {:classes [\"h-5\" \"w-5\"]}\n  academic-cap)\n```\n\nFor [Reagent](https://github.com/reagent-project/reagent),\n\n```clojure\n(ns my-file\n  (:require [to.fluent.heroicons-clojure.reagent.outline.academic-cap :refer [academic-cap]]))\n\n[:div {:class [\"h-5\" \"w-5\"]}\n academic-cap)\n```\n\nEach namespace also includes an alias of the icon name with the suffix `-icon`, which can be used to\navoid ambiguity.\n\n## Building\n\nClone [heroicons](https://github.com/tailwindlabs/heroicons) into `heroicons` and run `./build.clj`.\n\nRequires [babashka](https://github.com/babashka/babashka).\n\n## License\n\nThe heroicons set is offered under [its original license](https://github.com/tailwindlabs/heroicons).\n\nFor simplicity, `heroicons-clojure` uses the same license.\n\n## About\n\nLibrary by [Fluent](https://fluent.to). Icons by [Adam Wathan](https://github.com/adamwathan).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiplyco%2Fheroicons-clojure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmultiplyco%2Fheroicons-clojure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiplyco%2Fheroicons-clojure/lists"}