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
- Host: GitHub
- URL: https://github.com/hypervideo/yew-lucide
- Owner: hypervideo
- License: mit
- Created: 2024-10-21T10:29:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T14:49:28.000Z (over 1 year ago)
- Last Synced: 2025-01-17T12:17:22.907Z (over 1 year ago)
- Language: Rust
- Homepage: https://gitlab.com/john_t/yew-lucide
- Size: 136 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# yew-lucide
[](https://crates.io/crates/yew-lucide)
[](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
```