use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleStop(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - CircleStop"</title>
<circle cx="12" cy="12" r="10" />
<rect x="9" y="9" width="6" height="6" rx="1" />
</SvgIcon>
}
}