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