use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Ungroup(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Ungroup"</title>
<rect width="8" height="6" x="5" y="4" rx="1" />
<rect width="8" height="6" x="11" y="14" rx="1" />
</SvgIcon>
}
}