Crates.io | icons |
lib.rs | icons |
version | 0.3.1 |
created_at | 2025-05-20 18:23:11.126023+00 |
updated_at | 2025-09-06 05:58:47.705668+00 |
description | Icons for Rust fullstack applications — Leptos and Dioxus. |
homepage | https://rust-ui.com/icons |
repository | |
max_upload_size | |
id | 1681928 |
size | 1,343,250 |
A collection of SVG-based icon components for Rust fullstack applications.
Built on top of Tailwind CSS and tw_merge.
Browse the complete collection now at Rust UI Icons — and find the perfect one for your next project!
cargo add icons --features leptos # For Leptos
cargo add icons --features dioxus # For Dioxus
use leptos::prelude::*;
use icons::{ChevronUpDown, ChevronRight};
#[component]
pub fn MyComponent() -> impl IntoView {
view! {
<ChevronUpDown />
<ChevronRight class="size-8" />
}
}
use dioxus::prelude::*;
use icons::Check;
#[component]
pub fn Mycomponent() -> Element {
rsx! {
Check { class: "text-green-500" }
}
}
Leptos
port of lucide.dev icons.
Dioxus
port of lucide.dev icons.
Search feature on Rust UI.
Filtering feature on Rust UI.
Full support for animated
icons.
This project is licensed under the MIT License. See the LICENSE file for details.