use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CheckLine(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CheckLine" }
path { d: "M20 4L9 15" }
path { d: "M21 19L3 19" }
path { d: "M9 15L4 10" }
}
}
}