icons 0.1.3

Icons for Leptos applications.
Documentation
# Rust UI Icons

## Description

A collection of SVG-based icon components for Leptos applications.

Built on top of Tailwind CSS and [tw_merge](https://crates.io/crates/tw_merge).


## Example in Production

This crate is used in [rust-ui.com](https://www.rust-ui.com) — check it out to see some Rust UI Icons in action :)



## Usage

```rust
use icons::{ChevronUpDown, ChevronRight};

#[component]
pub fn MyComponent() -> impl IntoView {
    view! {
        <ChevronUpDown class="size-4" />
        <ChevronRight class="size-4 bg-accent" />
    }
}
```


## License

This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.