"use client" import { cn } from "@/lib/utils" import * as SeparatorPrimitive from "@radix-ui/react-separator" import * as React from "react" const Separator = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & { weight?: "ultralight" | "light" | "regular" } >( ( { className, orientation = "horizontal", decorative = true, weight = "regular", ...props }, ref ) => { const weightOpacity = { ultralight: "opacity-[0.60]", light: "opacity-[0.85]", regular: "opacity-1", } return ( ) } ) Separator.displayName = SeparatorPrimitive.Root.displayName export { Separator }