|
@@ -3,6 +3,8 @@
|
3
|
3
|
import React, { Component } from 'react';
|
4
|
4
|
import { ActivityIndicator } from 'react-native';
|
5
|
5
|
|
|
6
|
+import { ColorPalette } from '../../../styles';
|
|
7
|
+
|
6
|
8
|
/**
|
7
|
9
|
* An animated, large react-native {@link ActivityIndicator} which is considered
|
8
|
10
|
* a suitable visualization of long-running processes with indeterminate amounts
|
|
@@ -19,7 +21,9 @@ export default class LoadingIndicator extends Component {
|
19
|
21
|
return (
|
20
|
22
|
<ActivityIndicator
|
21
|
23
|
animating = { true }
|
22
|
|
- size = { 'large' } />
|
|
24
|
+ color = { ColorPalette.white }
|
|
25
|
+ size = { 'large' }
|
|
26
|
+ { ...this.props } />
|
23
|
27
|
);
|
24
|
28
|
}
|
25
|
29
|
}
|