use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ChartNoAxesColumnDecreasing(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ChartNoAxesColumnDecreasing"</title>
<path d="M12 20V10" />
<path d="M18 20v-4" />
<path d="M6 20V4" />
</SvgIcon>
}
}