use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleUserRound(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CircleUserRound" }
path { d: "M18 20a6 6 0 0 0-12 0" }
<circle cx="12" cy="10" r="4" />
<circle cx="12" cy="12" r="10" />
}
}
}