/// export interface BoxProperties { children: React.ReactNode | React.ReactNode[]; id?: string; align?: 'start' | 'center' | 'end'; direction?: 'horizontal' | 'vertical'; space?: 'none' | 'between' | number; }