use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Undo(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Undo"</title>
<path d="M3 7v6h6" />
<path d="M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" />
</SvgIcon>
}
}