Separator
featurefrom shadcn/ui Essentials
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
| Property | Type | Default | Description |
|---|---|---|---|
| orientation | string | — |
View raw JSON schema
{
"type": "object",
"properties": {
"orientation": {
"enum": [
"horizontal",
"vertical"
],
"type": "string"
}
}
}