Layout

Separator

Separate related content.

Separator

Separate related content.

Layout
TokensSemantic
SourceOwned

Install

Install
npx shadcn@latest add http://localhost:3000/r/separator.json

Usage

separator-example.tsx
"use client"

import { Separator } from "@/components/ui/separator"

export function Example() {
  return (
    <div className="w-full max-w-xs space-y-3 text-sm">
      <div className="flex justify-between">
        <span>Tokens</span>
        <span className="text-muted-foreground">Semantic</span>
      </div>
      <Separator />
      <div className="flex justify-between">
        <span>Source</span>
        <span className="text-muted-foreground">Owned</span>
      </div>
    </div>
  )
}

API

Separator
TypeScript
function Separator(props: SeparatorPrimitive.Props)
Source code +
components/ui/separator.tsx
"use client"

import { Separator as SeparatorPrimitive } from "@base-ui/react/separator"
import { cn } from "cn"

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

export { Separator }

Registry JSON ↗