use crate::components::ui::svg_icon::SvgIcon; use leptos::prelude::*; use crate::components::hooks::use_theme_mode::use_theme_mode; #[component] pub fn ThemeToggle() -> impl IntoView { let theme_mode = use_theme_mode(); view! { } }