use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ChartBarIncreasing(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ChartBarIncreasing"</title>
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
<path d="M7 11h8" />
<path d="M7 16h12" />
<path d="M7 6h3" />
</SvgIcon>
}
}