import { BaseBox, LoaderCustom, Spacing, StackCustom, TextCustom } from "@/components"; import QRCode from "react-native-qrcode-svg"; interface EventDetailQRCodeProps { qrValue: string; isLoading: boolean; } export function EventDetailQRCode({ qrValue, isLoading }: EventDetailQRCodeProps) { return ( QR Code Event {isLoading ? ( ) : ( )} ); }