use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn RedoDot(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - RedoDot" }
circle { cx: "12", cy: "17", r: "1" }
path { d: "M21 7v6h-6" }
path { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" }
}
}
}