use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ChartBarIncreasing(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ChartBarIncreasing" }
path { d: "M3 3v16a2 2 0 0 0 2 2h16" }
path { d: "M7 11h8" }
path { d: "M7 16h12" }
path { d: "M7 6h3" }
}
}
}