{"id":13808623,"url":"https://github.com/bennymeg/ngx-fluent-ui","last_synced_at":"2025-03-21T00:31:48.732Z","repository":{"id":96376969,"uuid":"350728122","full_name":"bennymeg/ngx-fluent-ui","owner":"bennymeg","description":"Angular \u0026 online library for Microsoft Fluent UI icons","archived":false,"fork":false,"pushed_at":"2024-04-18T16:40:24.000Z","size":8851,"stargazers_count":18,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-13T10:46:53.649Z","etag":null,"topics":["angular","fluent-ui","icons","microsoft"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/bennymeg.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}},"created_at":"2021-03-23T13:43:41.000Z","updated_at":"2024-10-29T19:08:34.000Z","dependencies_parsed_at":"2024-08-04T01:09:21.515Z","dependency_job_id":"e1b257ef-cc27-4e92-83e3-f1817485a8d5","html_url":"https://github.com/bennymeg/ngx-fluent-ui","commit_stats":{"total_commits":87,"total_committers":1,"mean_commits":87.0,"dds":0.0,"last_synced_commit":"088f2a9981f2ca15c030e722953b2568de94e3de"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennymeg%2Fngx-fluent-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennymeg%2Fngx-fluent-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennymeg%2Fngx-fluent-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bennymeg%2Fngx-fluent-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bennymeg","download_url":"https://codeload.github.com/bennymeg/ngx-fluent-ui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244094266,"owners_count":20397020,"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":["angular","fluent-ui","icons","microsoft"],"created_at":"2024-08-04T01:01:47.579Z","updated_at":"2025-03-21T00:31:46.390Z","avatar_url":"https://github.com/bennymeg.png","language":"TypeScript","funding_links":[],"categories":["Third Party Components"],"sub_categories":["Icons"],"readme":"\u003cbr/\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/bennymeg/ngx-fluent-ui\"\u003e\n    \u003cimg src=\"https://github.com/bennymeg/ngx-fluent-ui/blob/master/docs/assets/logo.png?raw=true\" width=\"128px\" alt=\"Logo\"\u003e\n  \u003c/a\u003e\n\n  \u003ch3 align=\"center\"\u003eNGX Fluent UI\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    Microsoft's Fluent UI icons library for Angular applications\n    \u003cbr/\u003e\n    \u003cbr/\u003e\n    \u003cimg src=\"https://github.com/bennymeg/ngx-fluent-ui/blob/master/docs/assets/fluent.png?raw=true\" width=\"10px\" alt=\"LIVE Demo\"\u003e\n    \u003ca href=\"https://bennymeg.github.io/ngx-fluent-ui/\"\u003eView Demo\u003c/a\u003e\n    .\n    \u003ca href=\"https://github.com/bennymeg/ngx-fluent-ui/issues\"\u003eReport Bug\u003c/a\u003e\n    .\n    \u003ca href=\"https://github.com/bennymeg/ngx-fluent-ui/issues\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/p\u003e\n\n  \u003cbr/\u003e\n\n  \u003cdiv align=\"center\"\u003e\n\n  [![licence](https://img.shields.io/github/license/bennymeg/ngx-fluent-ui.svg)](https://github.com/bennymeg/ngx-fluent-ui/blob/master/LICENSE)\n  [![npm version](https://img.shields.io/npm/v/ngx-fluent-ui.svg)](https://www.npmjs.com/package/ngx-fluent-ui-icons)\n  \n  \u003c/div\u003e\n\u003c/p\u003e\n\n\u003chr\u003e\u003c/br\u003e\n\n## Installation\n\n```bash\nnpm install ngx-fluent-ui-icons\n```\n\n\u003c!-- https://www.chrisjmendez.com/2017/06/17/angular-dynamically-inserting-svg-into-an-element/ --\u003e\n\n## Usage\n\n1. Import Fluent UI icon module\n\n```ts  \nimport { NgModule } from '@angular/core';\n\nimport { FluentUiIconsModule } from 'ngx-fluent-ui-icons';\nimport { heart_24_filled, heart_24_regular } from 'ngx-fluent-ui-icons';\n\n@NgModule({\n  imports: [\n    FluentUiIconsModule.pick({ heart_24_filled, heart_24_regular })\n  ]\n})\nexport class AppModule { }\n```\n\u003e **Note:** Only the icons you pick will be bundled in the final build\n\n2. Use it in the html template\n\n```html\n\u003cfluent-ui-icon name=\"heart_24_filled\" class=\"beat\" style=\"fill: red;\"\u003e\u003c/fluent-ui-icon\u003e\n\u003c!-- OR --\u003e\n\u003cfui name=\"heart_24_regular\" class=\"beat\" style=\"color: red;\"\u003e\u003c/fui\u003e\n```\n\n## Roadmap\n\nSee the [open issues](https://github.com/bennymeg/ngx-fluent-ui/issues) for a list of proposed features (and known issues).\n\n## Contributing\n\nContributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n* If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/bennymeg/ngx-fluent-ui/issues/new) to discuss it, or directly create a pull request after you edit the *README.md* file with necessary changes.\n* Please make sure you check your spelling and grammar.\n* Create individual PR for each suggestion.\n* Please also read through the [Code Of Conduct](https://github.com/bennymeg/ngx-fluent-ui/blob/master/CODE_OF_CONDUCT.md) before posting your first idea as well.\n\n### Creating A Pull Request\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nDistributed under the Apache 2.0 License. See [LICENSE](https://github.com/bennymeg/ngx-fluent-ui/blob/master/LICENSE.md) for more information.\n\n## Authors\n\n* **[Benny Megidish](https://github.com/bennymeg/)**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbennymeg%2Fngx-fluent-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbennymeg%2Fngx-fluent-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbennymeg%2Fngx-fluent-ui/lists"}