use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowLeftToLine(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ArrowLeftToLine" }
path { d: "M3 19V5" }
path { d: "m13 6-6 6 6 6" }
path { d: "M7 12h14" }
}
}
}