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: "1", y: "3", rx: "1" }
path { d: "m9 22 3-3 3 3" }
rect { width: "7", height: "13", x: "1", y: "3", rx: "1" }
}
}
}