import { ComponentProps, PropsWithChildren } from "react"; import Animated, { LinearTransition } from "react-native-reanimated"; import { WithTestID } from "../../utils/types"; import { AlertEdgeToEdge } from "./AlertEdgeToEdge"; type AlertEdgeToEdgeWrapperProps = PropsWithChildren< WithTestID<{ alertProps?: ComponentProps; }> >; export const AlertEdgeToEdgeWrapper = ({ children, alertProps }: AlertEdgeToEdgeWrapperProps) => ( <> {alertProps && } {children} );