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