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