delete music

This commit is contained in:
2025-09-02 16:49:44 +02:00
parent 88cb5fcdfb
commit df707ff5a0
2 changed files with 30 additions and 32 deletions
+7 -4
View File
@@ -1,11 +1,11 @@
import { View, Text } from "react-native";
import React from "react";
import { Text, View } from "react-native";
import { SheetManager } from "react-native-actions-sheet";
import { Palette } from "../../styles";
import BorderGradientButton from "../BorderGradientButton";
import GradientButton from "../GradientButton";
import { FONT_FAMILY } from "../../styles/Fonts";
import AppActionSheet from "../AppActionSheet";
import BorderGradientButton from "../BorderGradientButton";
import GradientButton from "../GradientButton";
const DeleteModal = ({ payload }) => {
const {
@@ -51,7 +51,10 @@ const DeleteModal = ({ payload }) => {
</Text>
</View>
<View style={{ width: "80%", alignSelf: "center", gap: 12 }}>
<BorderGradientButton title="Oui, supprimer" onPress={handleConfirm} />
<BorderGradientButton
title="Oui, supprimer"
onPress={handleConfirm}
/>
<GradientButton title="Non, annuler" onPress={onClose} />
</View>
</View>