icons 0.2.9

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 LetterText(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - LetterText" }
            path { d: "M15 12h6" }
            path { d: "M15 6h6" }
            path { d: "m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13" }
            path { d: "M3 18h18" }
            path { d: "M3.92 11h6.16" }
        }
    }
}