icons

Crates.ioicons
lib.rsicons
version0.8.4
created_at2025-05-20 18:23:11.126023+00
updated_at2025-09-23 17:29:38.925986+00
descriptionIcons for Rust fullstack applications — Leptos and Dioxus.
homepagehttps://rust-ui.com/icons
repository
max_upload_size
id1681928
size1,541,504
Max Wells (max-wells)

documentation

README

Rust/UI Icons

Description

A collection of SVG-based icon components for Rust fullstack applications.

Built on top of Tailwind CSS and tw_merge.

Explore the Full Icon Library

Browse the complete collection now at Rust/UI Icons — and find the perfect one for your next project!

Installation

Please make sure to have this in your Cargo.toml:

icons = { version = "0.X", features = ["leptos"] } # For Leptos
icons = { version = "0.X", features = ["dioxus"] } # For Dioxus

Usage

Leptos

use leptos::prelude::*;
use icons::{ChevronUpDown, ChevronRight};

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

Dioxus

use dioxus::prelude::*;
use icons::Check;

#[component]
pub fn Mycomponent() -> Element {
    rsx! {
        Check { class: "text-green-500" }
    }
}

Roadmap

  • 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 (WIP).

License

This project is licensed under the MIT License. See the LICENSE file for details.

Commit count: 0

cargo fmt