Component that lists address suggestion according to what is written on the input.
Prop Name | Type | Description |
---|
| ( addressDetail: GooglePlaceDetail | GooglePlaceData, ) => void | Handler called when writing the address so the suggestions appear to select one |
| | Function called when an error occurs |
<AddressSuggestionInput
onAddressDetails={onAddressDetails}
onError={onError}
/>
Component used to indicate which part of an onboarding process the user is currently on.
Prop Name | Type | Description |
---|
| | Color to display as the active indicator |
| | Color to display as the inactive indicator |
| | Index for the active indicator |
| | Count of the onboarding process |
<Indicator
count={indicatorsLength}
activeColor={theme.color.action.tertiary[400]}
inactiveColor={theme.color.action.tertiary[100]}
activeIndex={currentScreen}
/>