Spaces:
Sleeping
Sleeping
| 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 | |
| )} | |
| /> | |
| ); | |
| } | |