use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn MoveRight(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - MoveRight"</title>
<path d="M18 8L22 12L18 16" />
<path d="M2 12H22" />
</SvgIcon>
}
}