Amba-Agent-App/components/ui/scanProf.tsx
2026-01-16 00:22:35 +03:00

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;