use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Album(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Album" }
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
<polyline points="11 3 11 11 14 8 17 11 17 3" />
}
}
}