import React from 'react'; import { twMerge } from 'tailwind-merge'; interface DividerProps { orientation?: 'horizontal' | 'vertical'; label?: string; className?: string; } const Divider: React.FC = ({ orientation = 'horizontal', label, className, }) => { if (orientation === 'vertical') { return (
); } return (
); }; export default Divider;