import { Animated, StyleSheet } from 'react-native' import { useHeaderBackgroundColor } from '../shared/utils' import { useSafeAreaInsets } from 'react-native-safe-area-context' export default function DatePickerModalHeaderBackground({ children, }: { children: any }) { const backgroundColor = useHeaderBackgroundColor() const insets = useSafeAreaInsets() return ( {children} ) } const styles = StyleSheet.create({ animated: { elevation: 4, }, })