# Separator

A horizontal or vertical divider built on Radix Separator, rendered as decorative or semantic for accessibility.

- Category: Overlays & Navigation
- License: MIT
- Page: https://www.saasuji.com/components/separator
- Install: npx shadcn@latest add https://www.saasuji.com/r/separator.json

## Props

| Prop | Type | Default | Description |
| --- | --- | --- | --- |
| orientation | `"horizontal" | "vertical"` | `"horizontal"` | Direction of the divider line. |
| decorative | `boolean` | `true` | When true the separator is hidden from assistive technology; set false for a semantic divider. |
| className | `string` | — | Additional classes merged onto the separator. |
| ...props | `React.ComponentProps<typeof SeparatorPrimitive.Root>` | — | All remaining Radix Separator root props are forwarded. |

## Source

```tsx
"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 }

```
