yew-lucide

crates.io version crates.io downloads

Forked from Yew Feather

What is yew-lucide?

yew-lucide is a collection of simply beautiful open source icons for Yew. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and readability.

Based on Lucide Icons

This will be updated to keep in track with the latest lucide.

https://lucide.dev/

Usage

```rust use yew::{functioncomponent, html}; use yewlucide::Camera;

[function_component(App)]

fn app() -> Html { html! { } }

fn main() { yew::start_app::(); } ```

Icons can be configured with inline props:

rust <Camera color="red" size=48 />