15 lines
540 B
TypeScript
15 lines
540 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] italic text-black">加载中...</Text>
|
|
</Block>
|
|
</Block>
|
|
)
|
|
}
|