1 2 3 4 5 6 7 8 9 10
use leptos::*; // TODO: Allow more styles / variants #[component] pub fn Separator() -> impl IntoView { view! { <hr class="leptonic-separator solid" /> } }