mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
20 lines
364 B
TypeScript
20 lines
364 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}
|
|
/>;
|
|
};
|