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