use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowsUpFromLine(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ArrowsUpFromLine" }
path { d: "m4 6 3-3 3 3" }
path { d: "M7 17V3" }
path { d: "m14 6 3-3 3 3" }
path { d: "M17 17V3" }
path { d: "M4 21h16" }
}
}
}