use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleStop(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CircleStop" }
circle { cx: "12", cy: "12", r: "10" }
rect { width: "6", height: "6", x: "1", y: "9", rx: "1" }
}
}
}