use leptos::prelude::*;
use crate::_svg_icon::SvgIcon;
#[component]
pub fn MoveDown(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - MoveDown"</title>
<path d="M8 18L12 22L16 18" />
<path d="M12 2V22" />
</SvgIcon>
}
}