import Animated, {Easing, FadeInDown, FadeOut} from 'react-native-reanimated' import {type ComAtprotoTempCheckHandleAvailability} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {atoms as a, native, useTheme} from '#/alf' import {borderRadius} from '#/alf/tokens' import {Button} from '#/components/Button' import {Text} from '#/components/Typography' export function HandleSuggestions({ suggestions, onSelect, }: { suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion[] onSelect: ( suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion, ) => void }) { const t = useTheme() const {_} = useLingui() return ( {suggestions.map((suggestion, index) => ( ))} ) }