Bundles Phosphor icons with boilerplate to use in your egui app.
Add the crate as a dependency in Cargo.toml:
toml
egui-phosphor = "0.1.0"
On startup, update the fonts in your egui context: ```rust let mut fonts = egui::FontDefinitions::default(); eguiphosphor::addto_fonts(&mut fonts);
cc.eguictx.setfonts(fonts); ```
Use the constants provided by the crate in your text:
rust
ui.label(egui::RichText::new(format!("FILE_CODE {}", egui_phosphor::FILE_CODE)).size(32.0));
egui-phosphor is licensed under MIT OR Apache-2.0. Phosphor Icons are licensed under MIT.