use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn SquareRadical(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - SquareRadical"</title>
<path d="M7 12h2l2 5 2-10h4" />
<rect x="3" y="3" width="18" height="18" rx="2" />
</SvgIcon>
}
}