use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ListCollapse(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ListCollapse" }
path { d: "M10 12h11" }
path { d: "M10 18h11" }
path { d: "M10 6h11" }
path { d: "m3 10 3-3-3-3" }
path { d: "m3 20 3-3-3-3" }
}
}
}