use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn UserRound(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - UserRound" }
circle { cx: "12", cy: "8", r: "5" }
path { d: "M20 21a8 8 0 0 0-16 0" }
}
}
}