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