Command Palette

Search for a command to run...

Separator

A separator component displays a horizontal or vertical line to separate content.

Radix Primitives

An open-source UI component library.

Blog
Docs
Source

Installation

Follow these simple steps to add the Select component to your project:

Install Dependencies

pnpm add @radix-ui/react-separator

Create a new file components/ui/separator.tsx and copy the code below:

"use client";
 
import * as React from "react";
import * as SeparatorPrimitive from "@radix-ui/react-separator";
 
import { cn } from "@/lib/utils";
 
const Separator = React.forwardRef<
  React.ComponentRef<typeof SeparatorPrimitive.Root>,
  React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root>
>(
  (
    { className, orientation = "horizontal", decorative = true, ...props },
    ref
  ) => (
    <SeparatorPrimitive.Root
      ref={ref}
      decorative={decorative}
      orientation={orientation}
      className={cn(
        "bg-border shrink-0",
        orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",
        className
      )}
      {...props}
    />
  )
);
Separator.displayName = SeparatorPrimitive.Root.displayName;
 
export { Separator };

Adjust the import paths in both files according to your project's structure.