use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ContactRound(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ContactRound" }
path { d: "M16 2v2" }
path { d: "M17.915 22a6 6 0 0 0-12 0" }
path { d: "M8 2v2" }
circle { cx: "12", cy: "12", r: "4" }
rect { width: "18", height: "18", x: "2", y: "4", rx: "2" }
}
}
}