Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pedrodesu/yew-feather

Yew components for Feather icons
https://github.com/pedrodesu/yew-feather

icons svg wasm web yew yew-components

Last synced: about 2 months ago
JSON representation

Yew components for Feather icons

Awesome Lists containing this project

README

        

## yew-feather

[![crates.io version](https://img.shields.io/crates/v/yew-feather.svg?style=flat-square)](https://crates.io/crates/yew-feather)
[![crates.io downloads](https://img.shields.io/crates/d/yew-feather.svg?style=flat-square)](https://crates.io/crates/yew-feather)

#### 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::{function_component, html, Html};
use yew_feather::Camera;

#[function_component(App)]
fn app() -> Html {
html! { }
}

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

Icons can be configured with inline props:

```rust

```