21 lines
524 B
JavaScript
21 lines
524 B
JavaScript
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
function Separator({ className, orientation = 'horizontal', decorative = true, ref, ...props }) {
|
|
return (
|
|
<SeparatorPrimitive.Root
|
|
ref={ref}
|
|
decorative={decorative}
|
|
orientation={orientation}
|
|
className={cn(
|
|
'shrink-0 bg-border',
|
|
orientation === 'horizontal' ? 'h-[1px] w-full' : 'h-full w-[1px]',
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export { Separator };
|