| Crates.io | yew-lucide |
| lib.rs | yew-lucide |
| version | 0.494.0 |
| created_at | 2022-04-02 08:05:47.735236+00 |
| updated_at | 2025-04-18 14:35:21.944707+00 |
| description | Yew components for Lucide icons |
| homepage | |
| repository | https://gitlab.com/john_t/yew-lucide |
| max_upload_size | |
| id | 560736 |
| size | 1,577,380 |
Forked from Yew Feather
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.
This will be updated to keep in track with the latest lucide.
use yew::{function_component, html};
use yew_lucide::Camera;
#[function_component(App)]
fn app() -> Html {
html! { <Camera /> }
}
fn main() {
yew::start_app::<App>();
}
Icons can be configured with inline props:
<Camera color="red" size=48 />