diff --git a/types/react-native-elements/index.d.ts b/types/react-native-elements/index.d.ts index 60afbdf38d..821e9b65e7 100644 --- a/types/react-native-elements/index.d.ts +++ b/types/react-native-elements/index.d.ts @@ -354,11 +354,25 @@ export interface ButtonProps extends TouchableWithoutFeedbackProps { containerViewStyle?: StyleProp; /** - * Indicates button is loading + * Styling for loading spinner + * + * @default null + */ + activityIndicatorStyle?: StyleProp; + + /** + * Display a loading spinner * * @default false */ loading?: boolean; + + /** + * Display the spinner to the right + * + * @default false + */ + loadingRight?: boolean; } /**