icons 0.3.5

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use dioxus::prelude::*;

use super::SvgIcon;

#[component]
pub fn Ligature(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Ligature" }
            path { d: "M14 12h2v8" }
            path { d: "M14 20h4" }
            path { d: "M6 12h4" }
            path { d: "M6 20h4" }
            path { d: "M8 20V8a4 4 0 0 1 7.464-2" }
        }
    }
}