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