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