fix tickets

This commit is contained in:
Thomas Demirdjian
2025-10-03 16:19:48 +02:00
parent a1d00b8cf6
commit f3229be1f0
13 changed files with 273 additions and 77 deletions
+6 -1
View File
@@ -14,12 +14,17 @@ const BorderGradientButton = ({
containerStyle = {},
tint = "dark",
disabled = false,
maxWidth = null,
}) => {
return (
<Pressable
onPress={onPress}
disabled={disabled}
style={{ ...containerStyle, opacity: disabled ? 0.6 : 1 }}
style={{
maxWidth: maxWidth ? maxWidth : null,
...containerStyle,
opacity: disabled ? 0.6 : 1,
}}
>
<BorderGradient
gradientProps={{