diff options
Diffstat (limited to 'src/screens/Onboarding/StepInterests/InterestButton.tsx')
-rw-r--r-- | src/screens/Onboarding/StepInterests/InterestButton.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/Onboarding/StepInterests/InterestButton.tsx b/src/screens/Onboarding/StepInterests/InterestButton.tsx index 94685f3e1..cc692dafd 100644 --- a/src/screens/Onboarding/StepInterests/InterestButton.tsx +++ b/src/screens/Onboarding/StepInterests/InterestButton.tsx @@ -1,10 +1,11 @@ import React from 'react' -import {TextStyle, View, ViewStyle} from 'react-native' +import {View, ViewStyle, TextStyle} from 'react-native' -import {atoms as a, native, useTheme} from '#/alf' +import {useTheme, atoms as a, native} from '#/alf' import * as Toggle from '#/components/forms/Toggle' import {Text} from '#/components/Typography' import {capitalize} from '#/lib/strings/capitalize' + import {Context} from '#/screens/Onboarding/state' export function InterestButton({interest}: {interest: string}) { |