use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowUpWideNarrow(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ArrowUpWideNarrow"</title>
<path d="m3 8 4-4 4 4" />
<path d="M7 4v16" />
<path d="M11 12h10" />
<path d="M11 16h7" />
<path d="M11 20h4" />
</SvgIcon>
}
}