use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowLeft(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ArrowLeft"</title>
<path d="m12 19-7-7 7-7" />
<path d="M19 12H5" />
</SvgIcon>
}
}