interface OverlayProps { id?: string children: React.ReactNode position?: string className?: string layer?: string } function Overlay({ id, children, className, position='top-0 right-0', layer='z-pop' }: OverlayProps) { return (