use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CirclePause(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CirclePause" }
<circle cx="12" cy="12" r="10" />
<line x1="10" x2="10" y1="15" y2="9" />
<line x1="14" x2="14" y1="15" y2="9" />
}
}
}