iconflow
Install
Enable at least one pack feature so the fonts and icon data are included.
[]
= { = "1.0", = ["all-packs"] }
Quickstart guide
See docs/quickstart.md for a fast end-to-end setup guide and API overview.
Core API
fonts()returns the enabled font assets for registered packs.try_icon(pack, name, style, size)resolves an icon reference or returnsIconError.list(pack)returns the icon names for a pack.
egui quickstart
Register every FontAsset in egui::FontDefinitions, then render IconRef.codepoint with
FontFamily::Name(icon.family):
use ;
use ;
use Arc;
Runnable example: cargo run --example egui_demo --features all-packs
iced 0.14 quickstart
In iced 0.14, fonts are loaded asynchronously via Task. Load the bytes from fonts() and
render a glyph with Font::with_name once loading completes.
use ;
use text;
use ;
Runnable example: cargo run --example iced_demo --features all-packs
Example READMEs: examples/egui_demo/README.md, examples/iced_demo/README.md.
FAQ
See docs/faq.md.
Development
cargo xtask genregeneratessrc/generated/**fromassets/maps/*.json.cargo xtask gen --checkverifies generated output without writing files.
Icon Fonts and Licenses
iconflow includes icon fonts from 14 open-source icon packs. All fonts are distributed under permissive licenses (MIT, Apache-2.0, or ISC).
Included Icon Packs
| Icon Pack | License | Source |
|---|---|---|
| Bootstrap Icons | MIT | twbs/icons |
| Carbon Icons | Apache-2.0 | carbon-design-system/carbon-icons |
| Devicon | MIT | devicons/devicon |
| Feather Icons | MIT | feathericons/feather |
| Fluent UI System Icons | MIT | microsoft/fluentui-system-icons |
| Heroicons | MIT | tailwindlabs/heroicons |
| Iconoir | MIT | iconoir-icons/iconoir |
| Ionicons | MIT | ionic-team/ionicons |
| Lobe Icons | MIT | lobehub/lobe-icons |
| Lucide | ISC | lucide-icons/lucide |
| Octicons | MIT | primer/octicons |
| Phosphor Icons | MIT | phosphor-icons/web |
| Remix Icon | Apache-2.0 | Remix-Design/remixicon |
| Tabler Icons | MIT | tabler/tabler-icons |
Total: 34 TTF font files across 14 icon packs.
Acknowledgments
iconflow is built on top of these excellent open-source icon libraries. We are grateful to all the contributors and maintainers of these projects:
- Bootstrap Icons by Bootstrap team
- Carbon Icons by IBM Carbon Design System
- Devicon by Devicon and contributors
- Feather Icons by Cole Bemis and contributors
- Fluent UI System Icons by Microsoft
- Heroicons by Tailwind Labs
- Iconoir by Luca Burgio and contributors
- Ionicons by Ionic team
- Lobe Icons by LobeHub
- Lucide by Lucide contributors
- Octicons by GitHub (Primer)
- Phosphor Icons by Phosphor Icons team
- Remix Icon by Remix Design
- Tabler Icons by codecalm and contributors
All icon fonts are converted from their original SVG sources and embedded as TTF files in this project. The fonts are included in the crate binary when corresponding feature flags are enabled.
License
This project is licensed under MIT License.
Third-party dependencies and fonts have their own licenses. See:
- THIRD_PARTY_LICENSES_CRATES.html for Rust crate licenses
- THIRD_PARTY_LICENSES_FONTS.md for font licenses