19 lines
700 B
TypeScript
19 lines
700 B
TypeScript
import { View } from 'react-native';
|
|
|
|
export function PostCardSkeleton() {
|
|
return (
|
|
<View className="bg-white border border-neutral-200 rounded-2xl p-4 mb-3">
|
|
<View className="flex-row items-center gap-3 mb-3">
|
|
<View className="w-9 h-9 rounded-full bg-neutral-200" />
|
|
<View className="flex-1 gap-1.5">
|
|
<View className="h-3 bg-neutral-200 rounded w-1/3" />
|
|
<View className="h-2.5 bg-neutral-100 rounded w-1/4" />
|
|
</View>
|
|
</View>
|
|
<View className="h-3 bg-neutral-200 rounded w-full mb-2" />
|
|
<View className="h-3 bg-neutral-200 rounded w-3/4 mb-2" />
|
|
<View className="h-3 bg-neutral-100 rounded w-1/2" />
|
|
</View>
|
|
);
|
|
}
|