Components/079acfac-6ac2-43dd-9db3-63384fda59de

Separator

featurefrom shadcn/ui Essentials
Sign in to Add to Project
Separator

AI Usage Rules

Use Separator to visually divide content sections. Default is horizontal. Use orientation="vertical" between inline elements.

Code Template

"use client"
import * as React from "react"
import { Separator as SeparatorPrimitive } from "radix-ui"
import { cn } from "@/lib/utils"

function Separator({ className, orientation = "horizontal", decorative = true, ...props }: React.ComponentProps<typeof SeparatorPrimitive.Root>) {
  return (
    <SeparatorPrimitive.Root
      data-slot="separator"
      decorative={decorative}
      orientation={orientation}
      className={cn("shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px", className)}
      {...props}
    />
  )
}

export { Separator }

Props Schema

PropertyTypeDefaultDescription
orientationstring
View raw JSON schema
{
  "type": "object",
  "properties": {
    "orientation": {
      "enum": [
        "horizontal",
        "vertical"
      ],
      "type": "string"
    }
  }
}