use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleUserRound(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - CircleUserRound"</title>
<path d="M18 20a6 6 0 0 0-12 0" />
<circle cx="12" cy="10" r="4" />
<circle cx="12" cy="12" r="10" />
</SvgIcon>
}
}