diff --git a/src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx b/src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx new file mode 100644 index 0000000..e796666 --- /dev/null +++ b/src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx @@ -0,0 +1,35 @@ +import BeasyLogoIcon from "@components/BeasyLogoIcon"; +import WrapperTopEdgeCurved from "@components/WrapperTopEdgeCurved"; +import Box from "@components/bases/Box"; +import type { ReactElement } from "react"; +import {} from "react-native"; +import { SafeAreaView } from "react-native-safe-area-context"; +import BackgroundDefault from "./BackgroundDefault"; + +const BackgroundWithBeasyIconAndWhiteContentArea = ({ children }: { children?: ReactElement }) => { + return ( + + + + + + + {children} + + + + ); +}; + +export default BackgroundWithBeasyIconAndWhiteContentArea;