use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn InspectionPanel(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - InspectionPanel"</title>
<rect width="18" height="18" x="3" y="3" rx="2" />
<path d="M7 7h.01" />
<path d="M17 7h.01" />
<path d="M7 17h.01" />
<path d="M17 17h.01" />
</SvgIcon>
}
}