use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn DiscAlbum(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - DiscAlbum" }
<rect width="18" height="18" x="3" y="3" rx="2" />
<circle cx="12" cy="12" r="5" />
path { d: "M12 12h.01" }
}
}
}