use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn BetweenVerticalStart(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - BetweenVerticalStart"</title>
<rect width="7" height="13" x="3" y="8" rx="1" />
<path d="m15 2-3 3-3-3" />
<rect width="7" height="13" x="14" y="8" rx="1" />
</SvgIcon>
}
}