use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn MonitorUp(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - MonitorUp" }
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" }
}
}
}