Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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