icons 0.2.7

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
18
use leptos::prelude::*;

use super::SvgIcon;

#[component]
pub fn LetterText(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
    view! {
        <SvgIcon class=class>
            <title>"Rust UI Icons - LetterText"</title>

            <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" />
        </SvgIcon>
    }
}