use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn IterationCcw(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - IterationCcw"</title>
<path d="m16 14 4 4-4 4" />
<path d="M20 10a8 8 0 1 0-8 8h8" />
</SvgIcon>
}
}