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