use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn UserRoundCheck(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - UserRoundCheck" }
path { d: "M2 21a8 8 0 0 1 13.292-6" }
circle { cx: "10", cy: "8", r: "5" }
path { d: "m16 19 2 2 4-4" }
}
}
}