icons 0.2.7

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
use leptos::prelude::*;

use super::SvgIcon;

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

            <circle cx="4" cy="4" r="2" />
            <path d="m14 5 3-3 3 3" />
            <path d="m14 10 3-3 3 3" />
            <path d="M17 14V2" />
            <path d="M17 14H7l-5 8h20Z" />
            <path d="M8 14v8" />
            <path d="m9 14 5 8" />
        </SvgIcon>
    }
}