import { Button, XStack, Text, View } from '@junwon/aesthetics' import { Search } from '@tamagui/lucide-icons' interface SearchBarButtonProps { onPress: () => void searchBarText: string } export const SearchBarButton = ({ onPress, searchBarText }: SearchBarButtonProps) => { return ( ) }