use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Users(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Users" }
path { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }
path { d: "M16 3.128a4 4 0 0 1 0 7.744" }
path { d: "M22 21v-2a4 4 0 0 0-3-3.87" }
<circle cx="9" cy="7" r="4" />
}
}
}