12600+ 🖼 icons for embedded-graphics.
Add this to your Cargo.toml
:
toml
[dependencies]
embedded-icon = "0.1.0"
```rs use embeddedgraphics::image::Image; use embeddedgraphics::prelude::*; use embedded_icon::{simple::size32::Github};
let githubicon = Github::new(Rgb888::CSSORANGE); Image::new(github_icon, Point::new(10, 10)).draw(display).ok(); ```
Check the example: cargo run --example simple
Contributions are welcome! Please open an issue or PR on GitHub.
This project was inspired by embedded-iconoir.