use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleCheckBig(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CircleCheckBig" }
path { d: "M21.801 10A10 10 0 1 1 17 3.335" }
path { d: "m9 11 3 3L22 4" }
}
}
}