expo-duooomi-app/components/auth-loading-screen.tsx

15 lines
533 B
TypeScript

import { Ionicons } from '@expo/vector-icons'
import { Block, Text } from '@share/components'
import React from 'react'
export function AuthLoadingScreen() {
return (
<Block className="flex-1 items-center justify-center bg-black">
<Block className="items-center gap-[16px] border-4 border-accent bg-white p-[32px] shadow-large-accent">
<Ionicons color="#FFE500" name="hourglass-outline" size={48} />
<Text className="font-900 text-[16px] text-black">...</Text>
</Block>
</Block>
)
}