{"id":20050374,"url":"https://github.com/watzon/mint-tabler","last_synced_at":"2026-03-19T13:17:07.952Z","repository":{"id":91428237,"uuid":"584957165","full_name":"watzon/mint-tabler","owner":"watzon","description":"Tabler icon components for Mint Lang","archived":false,"fork":false,"pushed_at":"2023-09-21T00:34:11.000Z","size":1040,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-25T12:42:16.926Z","etag":null,"topics":["icons","mint","mint-lang","tabler"],"latest_commit_sha":null,"homepage":"","language":"Mint","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/watzon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-01-04T00:24:31.000Z","updated_at":"2023-08-25T19:29:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"5df38d6a-445e-4d7f-aec9-8fd65fd7513b","html_url":"https://github.com/watzon/mint-tabler","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/watzon/mint-tabler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watzon%2Fmint-tabler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watzon%2Fmint-tabler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watzon%2Fmint-tabler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watzon%2Fmint-tabler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/watzon","download_url":"https://codeload.github.com/watzon/mint-tabler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watzon%2Fmint-tabler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29273139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T13:47:44.167Z","status":"ssl_error","status_checked_at":"2026-02-09T13:47:43.721Z","response_time":56,"last_error":"SSL_read: 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","mint","mint-lang","tabler"],"created_at":"2024-11-13T11:56:44.003Z","updated_at":"2026-02-09T17:01:33.005Z","avatar_url":"https://github.com/watzon.png","language":"Mint","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tabler Icons for Mint\n\nThis is a wrapper around the awesome [Tabler](https://tabler-icons.io/) icon set. It provides each of the 3100+ icons as individual Mint components, making them super easy to integrate into your project.\n\n## Usage\n\nFirst add this library as a dependency to your Mint project:\n\n``` json\n{\n    \"dependencies\": {\n        \"tabler\": {\n            \"repository\": \"https://github.com/watzon/mint-tabler\",\n            \"constraint\": \"0.0.0 \u003c= v \u003c 1.0.0\"\n        }\n    }\n}\n```\n\nSearch for the icon you want to use on the [Tabler](https://tabler-icons.io/) website. All of the Tabler Mint components carry the same naming convention, `Tabler.Icon{NameHere}` where `NameHere` is the pascal cased version of the icon name from the Tabler website. For instance:\n\n``` mint\n\u003cTabler.IconLeaf /\u003e\n\u003cTabler.IconHomeEco /\u003e\n\u003cTabler.IconBellRinging2 /\u003e\n```\n\n## Properties\n\nIcons can be modified and styled in several different ways using the following properties.\n\nNote: _Items marked with `(*)` are not in a working condition yet._\n\n### scale\n\nSet the size of the icon, relative to its default size of 24 pixels.\n\n``` mint\n\u003cTabler.IconLeaf scale={2} /\u003e // 2x size\n```\n\n### animation (*)\n\nApply one of several animations to the icon. Possible animations include:\n\n- None\n- Wrench\n- Ring\n- Pulse\n- Spin\n- SpinPulse\n- Flash\n- Float\n\n``` mint\n\u003cTabler.IconLeaf animation={Tabler.Animation::Spin} /\u003e\n```\n\n### speed (*)\n\nSet the speed of the given animation. Possible choices are\n\n- Slow\n- Fast\n\n``` mint\n\u003cTabler.IconLeaf animation={Tabler.Animation::Spin} speed={Tabler.Speed::Fast} /\u003e\n```\n\n### hover (*)\n\nOnly apply the given animation on hover.\n\n``` mint\n\u003cTabler.IconLeaf animation={Tabler.Animation::Spin} hover={true} /\u003e\n```\n\n### flip\n\nFlip the icon along a given axis. Choices include:\n\n- None\n- Horizontal\n- Vertical\n- Both\n\n``` mint\n\u003cTabler.IconLeaf flip={Tabler.Flip::Both} /\u003e\n```\n\n### stroke\n\nSet the stroke color of the given icon.\n\n``` mint\n\u003cTabler.IconLeaf stroke=\"currentColor\" /\u003e\n\u003cTabler.IconLeaf stroke=\"green\" /\u003e\n\u003cTabler.IconLeaf stroke=\"#00ff00\" /\u003e\n```\n\n### fill\n\nSet the fill color of the given icon.\n\n``` mint\n\u003cTabler.IconLeaf fill=\"currentColor\" /\u003e\n\u003cTabler.IconLeaf fill=\"green\" /\u003e\n\u003cTabler.IconLeaf fill=\"#00ff00\" /\u003e\n```\n\n\n### label\n\nSet the `aria-label` attribute for the icon.\n\n``` mint\n\u003cTabler.IconLeaf label=\"a leaf\" /\u003e\n```\n\n### title\n\nSet the `title` attribute for the icon.\n\n``` mint\n\u003cTabler.IconLeaf title=\"leaf me alone\" /\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwatzon%2Fmint-tabler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwatzon%2Fmint-tabler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwatzon%2Fmint-tabler/lists"}