use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn MonitorX(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - MonitorX" }
path { d: "m14.5 12.5-5-5" }
path { d: "m9.5 12.5 5-5" }
rect { width: "20", height: "14", x: "2", y: "3", rx: "2" }
path { d: "M12 17v4" }
path { d: "M8 21h8" }
}
}
}