Spaces:
Sleeping
Sleeping
File size: 399 Bytes
3786a3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import * as React from 'react';
import { cn } from '@/lib/utils';
export function Separator({ className, orientation = 'horizontal' }: { className?: string; orientation?: 'horizontal' | 'vertical' }) {
return (
<div
role="separator"
className={cn(
'bg-border',
orientation === 'horizontal' ? 'h-px w-full' : 'h-full w-px',
className
)}
/>
);
}
|