import type { DividerProps } from '../types' import { cn } from '../utils' export const Divider: React.FC = ({ direction = 'horizontal', className }) => { if (direction === 'horizontal') return
return
}