use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn SquareCheck(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - SquareCheck"</title>
<rect width="18" height="18" x="3" y="3" rx="2" />
<path d="m9 12 2 2 4-4" />
</SvgIcon>
}
}