Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months ago
JSON representation
Yew components for Feather icons
- Host: GitHub
- URL: https://github.com/pedrodesu/yew-feather
- Owner: pedrodesu
- Created: 2020-11-30T18:46:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-09T20:29:33.000Z (12 months ago)
- Last Synced: 2024-07-10T18:17:38.753Z (4 months ago)
- Topics: icons, svg, wasm, web, yew, yew-components
- Language: Rust
- Homepage: https://crates.io/crates/yew-feather
- Size: 29.3 KB
- Stars: 19
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-yew - yew-feather - Feather Icons components for Yew. (Crates / Component Libraries)
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
```