use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ListX(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ListX" }
path { d: "M11 12H3" }
path { d: "M16 6H3" }
path { d: "M16 18H3" }
path { d: "m19 10-4 4" }
path { d: "m15 10 4 4" }
}
}
}