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

https://github.com/hypervideo/yew-lucide

forked to add yew 0.21 support
https://github.com/hypervideo/yew-lucide

Last synced: 8 months ago
JSON representation

forked to add yew 0.21 support

Awesome Lists containing this project

README

          

# yew-lucide

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

Forked from [Yew Feather](https://github.com/pedrodesu/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::{function_component, html};
use yew_lucide::Camera;

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

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

Icons can be configured with inline props:

```rust

```