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