Separator
A thin rule that visually divides content along a horizontal or vertical axis.
Show codeHide code
Installation
import { Separator } from "@makeplane/propel/components/separator";Usage
import { Separator } from "@makeplane/propel/components/separator";
export default function BasicDemo() {
return <Separator orientation="horizontal" decorative={false} />;
}Examples
Vertical
Set orientation="vertical" to divide inline content; Base UI reflects the axis as aria-orientation.
OverviewMembersSettings
Show codeHide code
Decorative
A decorative separator is visual-only and hidden from assistive technology — use it for layout rhythm, not a meaningful content boundary.
Draft the Q3 roadmapReview workspace members
Show codeHide code
API Reference
Separator
A thin rule that visually divides content. Grafts Base UI's `Separator` behavior onto the styled `elements` `Separator` `<div>` via `render`. Both adjustable axes from the design spec are required: `orientation` (`"horizontal"` | `"vertical"`) and `decorative` (the "Role" axis — semantic vs. visual-only). Spacing around the rule belongs to the surrounding layout, not the separator.