"use client"; import * as React from "react"; import * as SeparatorPrimitive from "@radix-ui/react-separator@1.1.2"; import { cn } from "./utils"; function Separator({ className, orientation = "horizontal", decorative = true, ...props }: React.ComponentProps) { return ( ); } export { Separator };