Separator

Account
Billing

Usage

Include CSS

@import "tailwindcss";
@import "5h3ll-ui/vega.css";

Or import only the base CSS, Separator component CSS, and one style pack.

@import "tailwindcss";
@import "5h3ll-ui/base.css";
@import "5h3ll-ui/components/separator.css";
@import "5h3ll-ui/styles/vega.css";

Add your separator HTML

Use a native <hr> for horizontal separators. Add aria-orientation="vertical" for a vertical separator in flex or grid layouts.

<hr class="separator" />

HTML structure

<hr class=“separator”>
Horizontal separator. Keep the native element when the separator conveys structure in the document or menu.
aria-orientation=“vertical” Optional
Switches the separator to a vertical rule for side-by-side layouts.

Examples

Horizontal

Profile

Manage your public details and display name.


Notifications

Choose which updates should reach your inbox.

Vertical



Decorative

If a separator is purely visual, keep the native <hr> but add aria-hidden="true" so it is ignored by assistive technology.

<hr class="separator" aria-hidden="true" />