import React from 'react'; import { View } from 'react-native'; import { useAppTheme } from '@theme'; import { getStyles } from './mapBottomSheet.styles'; interface MapBottomSheetProps { children: React.ReactNode; } export const MapBottomSheet: React.FC = ({ children }) => { const { colors } = useAppTheme(); const styles = getStyles(colors); return ( {children} ); }; export default MapBottomSheet;