use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn StretchVertical(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - StretchVertical"</title>
<rect width="6" height="20" x="4" y="2" rx="2" />
<rect width="6" height="20" x="14" y="2" rx="2" />
</SvgIcon>
}
}