import Box from "@components/bases/Box"; import type React from "react"; import {} from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; const SafeAreaViewTopLeftRightFull = ({ children }: { children: React.ReactNode }) => { return ( {children} ); }; export default SafeAreaViewTopLeftRightFull;