1//! `MenuFooter` — bottom slot inside `PopoverSurface` for primary 2//! action buttons or quiet hint text (M-UI.3 / AUT-123). 3 4use leptos::prelude::*; 5 6#[component] 7pub fn MenuFooter(children: Children) -> impl IntoView { 8 view! { <div class="menu-footer">{children()}</div> } 9}