#icons #svg-icons #dioxus #free #projects #font #awesome

dioxus-free-icons

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

17 unstable releases (7 breaking)

new 0.8.5 Apr 21, 2024
0.8.3 Mar 30, 2024
0.7.0 Aug 5, 2023
0.6.0 Jan 13, 2023
0.5.0 Jul 16, 2022

#42 in Images

Download history 183/week @ 2024-01-04 97/week @ 2024-01-11 143/week @ 2024-01-18 138/week @ 2024-01-25 88/week @ 2024-02-01 69/week @ 2024-02-08 162/week @ 2024-02-15 158/week @ 2024-02-22 121/week @ 2024-02-29 151/week @ 2024-03-07 152/week @ 2024-03-14 143/week @ 2024-03-21 730/week @ 2024-03-28 329/week @ 2024-04-04 227/week @ 2024-04-11 303/week @ 2024-04-18

1,601 downloads per month
Used in 2 crates

MIT license

8MB
172K SLoC

Discord Server Crates.io

dioxus-free-icons 🙂

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:

[dependencies]
dioxus-free-icons = { version = "0.8", 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.

use dioxus::prelude::*;
use dioxus_free_icons::icons::fa_brands_icons::FaRust;
use dioxus_free_icons::Icon;

fn RustIcon() -> Element {
    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

// generate icon files
cd packages/codegen
cargo run

Preview

cd packages/exmaple
cargo install dioxus-cli
dx 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

Dependencies

~2.5–8MB
~52K SLoC