use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn BetweenVerticalEnd(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - BetweenVerticalEnd" }
<rect width="7" height="13" x="3" y="3" rx="1" />
path { d: "m9 22 3-3 3 3" }
<rect width="7" height="13" x="14" y="3" rx="1" />
}
}
}