use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn SquareSigma(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - SquareSigma" }
<rect width="18" height="18" x="3" y="3" rx="2" />
path { d: "M16 8.9V7H8l4 5-4 5h8v-1.9" }
}
}
}