use leptos::*; #[component] pub fn SocialLinkContainer( children: Children ) -> impl IntoView { view! { } } #[component] pub fn SocialLink( children: Children, #[prop(optional)] url: Option, icon: icondata::Icon, ) -> impl IntoView { view! { { children() } } }