use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn MoveDiagonal2(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - MoveDiagonal2" }
path { d: "M19 13v6h-6" }
path { d: "M5 11V5h6" }
path { d: "m5 5 14 14" }
}
}
}