import React from 'react'; import { XStack } from '@tamagui/stacks'; import { SizableText as Text } from '@tamagui/text'; import { Button } from '@tamagui/button'; import { Bell, Settings } from 'lucide-react'; import { useAppearance } from '@/hooks/use-appearance'; type TopBarProps = { eventName: string; onProfilePress?: () => void; onNotificationsPress?: () => void; notificationCount?: number; }; export default function TopBar({ eventName, onProfilePress, onNotificationsPress, notificationCount = 0, }: TopBarProps) { const { resolved } = useAppearance(); const isDark = resolved === 'dark'; return ( {eventName} ); }