use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Umbrella(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Umbrella" }
path { d: "M22 12a10.06 10.06 1 0 0-20 0Z" }
path { d: "M12 12v8a2 2 0 0 0 4 0" }
path { d: "M12 2v1" }
}
}
}