# About
[](https://crates.io/crates/dioxus-icons-fa)

[](https://docs.rs/dioxus-icons-fa)


[Font Awesome icons](https://github.com/FortAwesome/Font-Awesome) for Dioxus
- [Document](https://docs.rs/dioxus-icons-fa)
## Example
First add to dependencies:
```toml
[dependencies]
dioxus-icons-fa = { "0.2" }
```
Then use svg icon component container and icon paths
```rust
use dioxus::prelude::*;
use dioxus_icons_fa::Icon;
use dioxus_icons_fa::regular::AddressBook;
#[comonent]
fn page() -> Element {
rsx!{
h1 { "Using font awesome design icons" }
Icon {
width: "32",
height: "32",
icon: AddressBook
}
}
}
```
## License
This project is licensed under the Apache-2.0 license.
## Icon license
[Font Awesome Icons](https://github.com/FortAwesome/Font-Awesome)|[CC BY 4.0 && SIL OFL 1.1](https://github.com/FortAwesome/Font-Awesome/blob/7.x/LICENSE.txt)|[7.2.0](https://github.com/FortAwesome/Font-Awesome/tree/7.2.0)