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