Ashutosh1975270's picture
feat: complete frontend and backend integration and security configurations
3786a3f
Raw
History Blame Contribute Delete
399 Bytes
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
)}
/>
);
}