{"id":46469351,"url":"https://github.com/zyf722/typst-tabler-icons","last_synced_at":"2026-03-06T06:02:20.463Z","repository":{"id":260126932,"uuid":"868502048","full_name":"zyf722/typst-tabler-icons","owner":"zyf722","description":"A Typst library for Tabler Icons, a set of over 5800 free MIT-licensed high-quality SVG icons.","archived":false,"fork":false,"pushed_at":"2026-01-10T07:31:21.000Z","size":313,"stargazers_count":12,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T02:09:51.757Z","etag":null,"topics":["icons","tabler-icons","typst","typst-package"],"latest_commit_sha":null,"homepage":"https://typst.app/universe/package/use-tabler-icons","language":"Typst","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/zyf722.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,"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-10-06T14:49:50.000Z","updated_at":"2026-01-10T07:31:24.000Z","dependencies_parsed_at":"2024-12-01T02:24:06.986Z","dependency_job_id":"aa9ec6cf-3d33-4d5b-931b-4105b0a21806","html_url":"https://github.com/zyf722/typst-tabler-icons","commit_stats":null,"previous_names":["zyf722/typst-tabler-icons"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/zyf722/typst-tabler-icons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyf722%2Ftypst-tabler-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyf722%2Ftypst-tabler-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyf722%2Ftypst-tabler-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyf722%2Ftypst-tabler-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zyf722","download_url":"https://codeload.github.com/zyf722/typst-tabler-icons/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyf722%2Ftypst-tabler-icons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30164531,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T04:43:31.446Z","status":"ssl_error","status_checked_at":"2026-03-06T04:40:30.133Z","response_time":250,"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":["icons","tabler-icons","typst","typst-package"],"created_at":"2026-03-06T06:00:59.945Z","updated_at":"2026-03-06T06:02:20.398Z","avatar_url":"https://github.com/zyf722.png","language":"Typst","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e **Note**\n\u003e\n\u003e This project is greatly inspired by and mainly edited based on [typst-fontawesome](https://github.com/duskmoon314/typst-fontawesome).\n\n\u003ch2 align=\"center\"\u003e\n  \u003cimg alt=\"use-tabler-icons\" src=\"assets/banner.svg\"\u003e\n\u003c/h2\u003e\n\nA Typst library for [Tabler Icons](https://github.com/tabler/tabler-icons), a set of over 5800 free MIT-licensed high-quality SVG icons.\n\n## Usage\n### Install Font\nInstall [the webfont for Tabler Icons](https://docs.tabler.io/icons/libraries/webfont) before using this library. Or, if you are using Typst web app, simply upload the font file to your project.\n\n\u003e [!NOTE]\n\u003e\n\u003e Since Tabler Icons v3.36.0, filled icons have been separated into a different font file. If you want to use filled icons, make sure to install both the regular ` tabler-icons.ttf` and filled `tabler-icons-filled.ttf` font files.\n\n### Import the Library\n#### Using the Typst Packages\nYou can install the library using the typst packages:\n```typst\n#import \"@preview/use-tabler-icons:0.18.0\": *\n```\n\n#### Manually Install\nJust copy all files under [`src`](https://github.com/zyf722/typst-tabler-icons/tree/main/src) to your project and rename them to avoid naming conflicts.\n\nThen, import `lib.typ` to use the library:\n```typst\n#import \"lib.typ\": *\n```\n\n### Use the Icons\nYou can use the `tabler-icon` function to create an icon with its name:\n```typst\n#tabler-icon(\"calendar\")\n```\n\nOr you can directly use the `ti-` prefix :\n```typst\n#ti-calendar()\n```\n\nAs these icons are actually text with custom font, you can pass any text attributes to the function:\n```typst\n#tabler-icon(\"calendar\", fill: blue)\n```\n\nRefer to [`gallery.pdf`](https://github.com/zyf722/typst-tabler-icons/tree/main/gallery/gallery.pdf) and [Tabler Icons website](https://tabler.io/icons) for all available icons.\n\n## Contributing\n[Pull Requests](https://github.com/zyf722/typst-tabler-icons/pulls) are welcome!\n\nIt is strongly recommended to follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification when writing commit messages and creating pull requests.\n\n### Github Actions Workflow\nThis package uses a daily run [Github Actions workflow](https://github.com/zyf722/typst-tabler-icons/tree/main/.github/workflows/build.yml) to keep the library up-to-date with the latest version of Tabler Icons, which internally runs [`scripts/generate.mjs`](https://github.com/zyf722/typst-tabler-icons/tree/main/scripts/generate.mjs) to generate Typst source code of the library and gallery.\n\n## License\n[MIT](https://github.com/zyf722/typst-tabler-icons/tree/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyf722%2Ftypst-tabler-icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzyf722%2Ftypst-tabler-icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyf722%2Ftypst-tabler-icons/lists"}