diff --git a/src/components/Alert.js b/src/components/Alert.js index 0909e07..b46f1d3 100644 --- a/src/components/Alert.js +++ b/src/components/Alert.js @@ -1,12 +1,12 @@ -import React, { useState } from "react"; -import { Alert, Platform, View, Text } from "react-native"; import { PortalProvider } from "@gorhom/portal"; +import React, { useState } from "react"; +import { Alert, Platform, Text } from "react-native"; -import { Fonts, Style, gutters } from "../styles"; - +import { BlurView } from "expo-blur"; +import { View } from "react-native"; +import { Fonts, gutters } from "../styles"; +import GradientButton from "./GradientButton"; import Overlay from "./Overlay"; -import Button from "./Button"; - const WebAlertModal = ({ title, description, options }) => { const [visible, setVisible] = useState(true); @@ -26,19 +26,27 @@ const WebAlertModal = ({ title, description, options }) => { return ( - @@ -58,19 +66,22 @@ const WebAlertModal = ({ title, description, options }) => { {description} -