Add try catch block if user reject a withdraw action

This commit is contained in:
RcleydsonR
2023-02-17 18:06:58 -03:00
parent ec5fb7ef76
commit 94640c4492
4 changed files with 12 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
const props = defineProps({
width: String,
height: String,
color: String,
fillColor: String,
show: Boolean,
});
@@ -11,7 +11,7 @@ const getCustomClass = () => {
return [
`w-${props.width}`,
`h-${props.height}`,
`fill-${props.color}`,
`fill-${props.fillColor}`,
"text-gray-200",
"animate-spin",
"dark:text-gray-600",