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