use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn MoveVertical(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - MoveVertical" }
path { d: "M12 2v20" }
path { d: "m8 18 4 4 4-4" }
path { d: "m8 6 4-4 4 4" }
}
}
}