import type { z } from 'zod/v4' import { alignClasses, arrangementClasses, borderClasses, gapClasses, heightClasses, justifyClasses, overflowClasses, paddingClasses, roundedClasses, widthClasses, wrapClasses } from '../styles/classes' import type { ContainerProps, ContainerVariantEnum } from '../types' import { cn } from '../utils' const containerVariantClasses: Record, string> = { ghost: '', primary: 'bg-primary text-white', secondary: 'bg-accent' } export const Container: React.FC = ({ id, children, arrangement = 'column', variant = 'ghost', gap = 'none', padding = 'none', border = 'none', justify = 'start', align = 'start', rounded = 'default', height = 'fit', width = 'full', overflow = 'visible', wrap = 'nowrap', className }) => { return (
{children}
) }