import React from 'react'; import { Button } from '@tamagui/button'; import { Camera } from 'lucide-react'; import { useGuestThemeVariant } from '../lib/guestTheme'; type FloatingActionButtonProps = { onPress: () => void; onLongPress?: () => void; }; export default function FloatingActionButton({ onPress, onLongPress }: FloatingActionButtonProps) { const longPressTriggered = React.useRef(false); const { isDark } = useGuestThemeVariant(); return ( ); }