1 2 3 4 5 6 7 8 9 10 11 12 13 14
use dioxus::prelude::*; use super::SvgIcon; #[component] pub fn Undo(class: Option<String>) -> Element { rsx! { SvgIcon { class, title { "Rust UI Icons - Undo" } path { d: "M3 7v6h6" } path { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" } } } }