use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleCheckBig(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - CircleCheckBig"</title>
<path d="M21.801 10A10 10 0 1 1 17 3.335" />
<path d="m9 11 3 3L22 4" />
</SvgIcon>
}
}