icons 0.2.7

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

use super::SvgIcon;

#[component]
pub fn TentTree(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - TentTree" }
            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" }
        }
    }
}