mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
23 lines
471 B
TypeScript
23 lines
471 B
TypeScript
import { Separator as ShadcnSeparator } from '@/components/ui/separator'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
interface SeparatorProps {
|
|
orientation?: 'horizontal' | 'vertical'
|
|
decorative?: boolean
|
|
className?: string
|
|
}
|
|
|
|
export function Separator({
|
|
orientation = 'horizontal',
|
|
decorative = true,
|
|
className,
|
|
}: SeparatorProps) {
|
|
return (
|
|
<ShadcnSeparator
|
|
orientation={orientation}
|
|
decorative={decorative}
|
|
className={className}
|
|
/>
|
|
)
|
|
}
|