use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Axis3D(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Axis3D" }
path { d: "M13.5 10.5 15 9" }
path { d: "M4 4v15a1 1 0 0 0 1 1h15" }
path { d: "M4.293 19.707 6 18" }
path { d: "m9 15 1.5-1.5" }
}
}
}