use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Dot(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Dot"</title>
<circle cx="12.1" cy="12.1" r="1" />
</SvgIcon>
}
}