use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn RectangleVertical(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - RectangleVertical" }
rect { width: "12", height: "20", x: "2", y: "2", rx: "2" }
}
}
}