use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowDownFromLine(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ArrowDownFromLine" }
path { d: "M19 3H5" }
path { d: "M12 21V7" }
path { d: "m6 15 6 6 6-6" }
}
}
}