import { HTMLAttributes } from 'react' import { cn } from '@/lib/utils' const Section = ({ children, className }: HTMLAttributes) => { return (
{children}
) } const Divider = { displayName: 'Divider', Section, } export { Divider }