use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Rewind(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Rewind" }
path { d: "M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z" }
path { d: "M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z" }
}
}
}