import { asp as g } from "@asp/asp"; import { ImageBackground } from "expo-image"; import type { FC } from "react"; import type { ViewProps } from "react-native"; import { useSafeAreaInsets } from "react-native-safe-area-context"; export const BarnoinPayBackground: FC = ({ children, style, ...rest }) => { const insets = useSafeAreaInsets(); return ( {children} ); };