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