use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn AlignStartVertical(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - AlignStartVertical" }
<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" }
}
}
}