16 lines
429 B
TypeScript
16 lines
429 B
TypeScript
import React from "react";
|
|
import { View, Text } from "react-native";
|
|
import { Link } from "expo-router";
|
|
import { BellIcon, LucidePersonStanding, QrCode } from "lucide-react-native";
|
|
import { ROUTES } from "~/lib/routes";
|
|
|
|
function ScanProf() {
|
|
return (
|
|
<View className="flex flex-row items-center justify-between py-10 px-5 w-full">
|
|
<QrCode className="text-white" />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default ScanProf;
|