use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Undo2(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Undo2" }
path { d: "M9 14 4 9l5-5" }
path { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11" }
}
}
}