dioxus-free-icons

Crates.io

Use free svg icons in your Dioxus projects easily with dioxus-free-icons.

More information about this crate can be found in the crate documentation.

Install

To use dioxus-free-icons, add this to your Cargo.toml:

toml [dependencies] dioxus-free-icons = { version = "0.5.2", features = ["font-awesome-brands"] }

Support features

The following features are available. Please see react-icons site to check the icon name and icon design.

Example

This library provides Icon component, which will generate SVG for a Font Awesome icon.

```rust use dioxus::prelude::*; use dioxusfreeicons::icons::fabrandsicons::FaRust; use dioxusfreeicons::Icon;

fn RustIcon(cx: Scope) -> Element { cx.render(rsx! { Icon { width: 30, height: 30, fill: "black", icon: FaRust, } }) } ```

License

This project is licensed under the MIT license.

Icon

Icon Library|License|Version ---|---|--- Bootstrap Icons|MIT License| 1.8.3 Feather|MIT License| 4.29.0 Font Awesome|CC BY 4.0 License| 6.1.1 Heroicons|MIT License| 1.0.6 Ionicons|MIT License| 6.0.2 Material Design icons|Apache License 2.0| 4.0.0 Octicons|MIT License| 17.3.0

Contribution

The project welcomes all contributions from anyone willing to work in good faith with other contributors and the community. In particular, contributions regarding support for other free icons such as Material Design icons or Ionicons are welcome. This library aims to be a react-icons-like library for dioxus projects.

Development

sh // generate icon files cd packages/codegen cargo run

Preview

sh cd packages/exmaple cargo install dioxus-cli dioxus serve

Update icons

  1. checkout a new tag in the icon resource submodule
  2. create new icon files
  3. Update README.md and check the LICENSE