use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Disc2(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Disc2" }
circle { cx: "12", cy: "12", r: "10" }
circle { cx: "12", cy: "12", r: "4" }
path { d: "M12 12h.01" }
}
}
}