Angular & online library for Microsoft Fluent UI icons
Microsoft's Fluent UI icons library for Angular applications
View Demo
.
Report Bug
.
Request Feature
npm install ngx-fluent-ui-icons
import { NgModule } from '@angular/core';
import { FluentUiIconsModule } from 'ngx-fluent-ui-icons';
import { heart_24_filled, heart_24_regular } from 'ngx-fluent-ui-icons';
@NgModule({
imports: [
FluentUiIconsModule.pick({ heart_24_filled, heart_24_regular })
]
})
export class AppModule { }
Note: Only the icons you pick will be bundled in the final build
<fluent-ui-icon name="heart_24_filled" class="beat" style="fill: red;"></fluent-ui-icon>
<!-- OR -->
<fui name="heart_24_regular" class="beat" style="color: red;"></fui>
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the Apache 2.0 License. See LICENSE for more information.