use leptos::prelude::*;
#[component]
pub fn SpacerPrimitive(
#[prop(into, default = String::new())] class: String,
) -> impl IntoView {
view! {
<div
data-rs-spacer=""
class=class
/>
}
}
pub fn spacer_view() -> AnyView {
view! {
<div
data-rs-spacer=""
/>
}.into_any()
}