Projekt

Obecné

Profil

Stáhnout (469 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 039c5147 Schwobik
import { HStack, Heading, Spinner } from "native-base"
2 852de08e Fantič
import React from "react"
3
4
5 a7a9a204 Fantič
interface LoadingBoxProps {
6 852de08e Fantič
    text: string
7
}
8
9 a7a9a204 Fantič
const LoadingBox = (props: LoadingBoxProps) => {
10 039c5147 Schwobik
    const { text } = props
11 852de08e Fantič
12
    return (
13
        <HStack alignItems="center" flex="1" justifyContent="center">
14
            <Spinner/>
15
            <Heading color="primary.400" fontSize="md">
16
                {text}
17
            </Heading>
18
        </HStack>
19 039c5147 Schwobik
    )
20 852de08e Fantič
}
21
22
23
export default LoadingBox