yew-feather

crates.io version crates.io downloads

What is yew-feather?

yew-feather 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 Feather Icons v4.29.0

https://feathericons.com/

Usage

```rust use yew::{functioncomponent, html, Html}; use yewfeather::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" />