use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Ungroup(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Ungroup" }
<rect width="8" height="6" x="5" y="4" rx="1" />
<rect width="8" height="6" x="11" y="14" rx="1" />
}
}
}