mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* Update index.d.ts Added `customIndicator` which was missing. * Update react-native-loading-spinner-overlay-tests.tsx
21 lines
396 B
TypeScript
21 lines
396 B
TypeScript
import * as React from "react";
|
|
import Spinner from "react-native-loading-spinner-overlay";
|
|
|
|
() => {
|
|
<Spinner />;
|
|
};
|
|
|
|
() => {
|
|
<Spinner
|
|
cancelable={false}
|
|
color="red"
|
|
animation="slide"
|
|
overlayColor="black"
|
|
size="small"
|
|
textContent="text"
|
|
textStyle={{ fontSize: 14 }}
|
|
visible={true}
|
|
customIndicator={<></>}
|
|
/>;
|
|
};
|