"use client" import * as SeparatorPrimitive from "@radix-ui/react-separator" import React, { forwardRef, ElementRef, ComponentPropsWithoutRef } from "react" import { classNames } from "../../utils/classNames" export type SeparatorProps = Pick< ComponentPropsWithoutRef, "className" | "orientation" | "decorative" > /** * Visually or semantically separates content. */ export const Separator = forwardRef< ElementRef, SeparatorProps >(function Separator( { className, orientation = "horizontal", decorative = true }, ref, ) { return ( ) })