import * as Separator from '@radix-ui/react-separator'; import classnames from 'classnames'; interface Props { orientation?: 'horizontal' | 'vertical'; decorative?: boolean; className?: string; } export function Divider({ className, orientation = 'horizontal', decorative }: Props) { return ( ); }