use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ChartNoAxesGantt(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ChartNoAxesGantt" }
path { d: "M8 6h10" }
path { d: "M6 12h9" }
path { d: "M11 18h7" }
}
}
}