Separator

A visual divider with horizontal and vertical orientations.

Preview

separator-demo
Blog
Docs
Source
Overview
Analytics

Installation

pnpm dlx shadcn@latest add http://localhost:3000/r/separator.json

Source

separator.tsx
import { Separator as SeparatorPrimitive } from "@base-ui/react/separator";

import { cn } from "@/lib/utils";

function Separator({ className, orientation = "horizontal", ...props }: SeparatorPrimitive.Props) {
  return (
    <SeparatorPrimitive
      className={cn(
        "shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:w-px data-[orientation=vertical]:not-[[class^='h-']]:not-[[class*='_h-']]:self-stretch",
        className,
      )}
      data-slot="separator"
      orientation={orientation}
      {...props}
    />
  );
}

export { Separator };

Props

PropTypeDefaultDescription
orientation"horizontal" | "vertical""horizontal"Direction of the separator.
classNamestring-Adds custom classes to the separator.