From 6224ecba07c5b2dbaaeea4e9e614ce41bbe22e34 Mon Sep 17 00:00:00 2001 From: Guilherme Pacheco Date: Tue, 1 Sep 2020 20:33:46 -0300 Subject: [PATCH] Add listUnderlayColor to prop types --- GooglePlacesAutocomplete.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GooglePlacesAutocomplete.d.ts b/GooglePlacesAutocomplete.d.ts index d00c62d7..c7378d12 100644 --- a/GooglePlacesAutocomplete.d.ts +++ b/GooglePlacesAutocomplete.d.ts @@ -382,6 +382,8 @@ interface GooglePlacesAutocompleteProps extends TextInputProps { // use the ListEmptyComponent prop when no autocomplete results are found. listEmptyComponent?: React.ComponentType<{}>; + + listUnderlayColor?: string; } export class GooglePlacesAutocomplete extends React.Component<