diff options
author | Eric Bailey <git@esb.lol> | 2025-07-31 10:32:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-31 10:32:16 -0500 |
commit | e87555c4816c14752e944092d373ee53bbc05632 (patch) | |
tree | a54da285cae588a464d47b22d5f658a0771f8b70 /src/screens/Onboarding/StepProfile/index.tsx | |
parent | 3bcfcba6d8176bac03202b496110915da748b0f1 (diff) | |
download | voidsky-e87555c4816c14752e944092d373ee53bbc05632.tar.zst |
[APP-1310] Button cleanup (#8754)
* Rm gradient buttons from Storybook * TEMP move storybook button section * Remove gradient_sky * Remove actual defs for gradient_sky and gradient_primary * Remove other gradient defs * Remove gradient support entirely * Deprecate 'variant' in favor of 'color' * Fork base styles codepath to make variant deprecation more obvious * Remove text styles for when no color is set, never been used * Fork text styles codepath to make variant deprecation more obvious * Revert temp storybook commit, remove deprecated values * Replace remaining gradient button usage
Diffstat (limited to 'src/screens/Onboarding/StepProfile/index.tsx')
-rw-r--r-- | src/screens/Onboarding/StepProfile/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Onboarding/StepProfile/index.tsx b/src/screens/Onboarding/StepProfile/index.tsx index 3d2c551e9..555507689 100644 --- a/src/screens/Onboarding/StepProfile/index.tsx +++ b/src/screens/Onboarding/StepProfile/index.tsx @@ -267,8 +267,8 @@ export function StepProfile() { <OnboardingControls.Portal> <View style={[a.gap_md, gtMobile && {flexDirection: 'row-reverse'}]}> <Button - variant="gradient" - color="gradient_sky" + variant="solid" + color="primary" size="large" label={_(msg`Continue to next step`)} onPress={onContinue}> |