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