use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Heading6(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Heading6" }
path { d: "M4 12h8" }
path { d: "M4 18V6" }
path { d: "M12 18V6" }
circle { cx: "19", cy: "16", r: "2" }
path { d: "M20 10c-2 2-3 3.5-3 6" }
}
}
}