import { Separator as SeparatorPrimitive } from '@base-ui/react/separator'; import { cn } from '@evershop/evershop/lib/util/cn'; import React from 'react'; function Separator({ className, orientation = 'horizontal', ...props }: SeparatorPrimitive.Props) { return ( ); } export { Separator };