import type { ViewProps } from 'react-native' import { SafeAreaView as RNSafeAreaView } from 'react-native' import { copyComponentProperties } from '../utils' import { useStyle } from './useStyle' export const SafeAreaView = copyComponentProperties(RNSafeAreaView, (props: ViewProps) => { const style = useStyle(props.className, props) return ( ) }) export default SafeAreaView