icons 0.2.12

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

use super::SvgIcon;

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

            <rect width="14" height="6" x="5" y="14" rx="2" />
            <rect width="10" height="6" x="7" y="4" rx="2" />
            <path d="M2 14h20" />
            <path d="M2 4h20" />
        </SvgIcon>
    }
}