import { ReactNode } from 'react'; import { Box } from './Box'; import { Surface } from './Surface'; export interface ErrorPageContainerProps { children: ReactNode; size?: 'sm' | 'md' | 'lg'; variant?: 'default' | 'glass'; } export const ErrorPageContainer = ({ children, size = 'md', variant = 'default' }: ErrorPageContainerProps) => { const sizeMap = { sm: '24rem', md: '32rem', lg: '42rem', }; return ( {children} ); };