use leptos::*; use leptos_icons::FiIcon::FiExternalLink; use leptos_icons::*; #[component] pub fn Link( #[prop[optional]] url: String, children: Children ) -> impl IntoView { view! { { children() } } }