use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowLeftToLine(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ArrowLeftToLine"</title>
<path d="M3 19V5" />
<path d="m13 6-6 6 6 6" />
<path d="M7 12h14" />
</SvgIcon>
}
}