Separator

Visually or semantically separates content.

Installation

The CLI is not yet available. For now, manually copy the component source into your project.

rust-shadcn-ui add separator

Usage

use yew::prelude::*;

use crate::components::ui::separator::Separator;

#[component]
fn Usage() -> impl IntoView {
    view! {
        <Separator />
    }
}

See Also