use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Clock5(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Clock5"</title>
<path d="M12 6v6l2 4" />
<circle cx="12" cy="12" r="10" />
</SvgIcon>
}
}