import React from 'react'; import { View } from 'react-native'; type OverlayProps = { color?: string; opacity?: number; dark?: boolean; darkColor?: string; children?: React.ReactNode; }; export const Overlay = ({ dark, children, opacity = 1, color = 'white', darkColor = 'black', }: OverlayProps) => { return ( {children} ); };