use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn RotateCwSquare(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - RotateCwSquare" }
path { d: "M12 5H6a2 2 0 0 0-2 2v3" }
path { d: "m9 8 3-3-3-3" }
path { d: "M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2" }
}
}
}