15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
import React from "react";
|
|
import { View, Text } from "react-native";
|
|
import { BarIndicator } from "react-native-indicators";
|
|
import { Container, Content } from "native-base";
|
|
|
|
export default function LoadingDisplay({ size, count = 5 }) {
|
|
return (
|
|
<Container>
|
|
<Content>
|
|
<BarIndicator size={size || "large"} count={count} />
|
|
</Content>
|
|
</Container>
|
|
);
|
|
}
|