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