use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CodeXml(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CodeXml" }
path { d: "m18 16 4-4-4-4" }
path { d: "m6 8-4 4 4 4" }
path { d: "m14.5 4-5 16" }
}
}
}