import { Picker } from '@/components/ui/picker'; import { MapPin, Settings, User } from 'lucide-react-native'; import React, { useState } from 'react'; export function PickerStyled() { const [location, setLocation] = useState(''); const [user, setUser] = useState(''); const [setting, setSetting] = useState(''); const locations = [ { label: 'New York', value: 'ny' }, { label: 'Los Angeles', value: 'la' }, { label: 'Chicago', value: 'chi' }, ]; const users = [ { label: 'John Doe', value: 'john' }, { label: 'Jane Smith', value: 'jane' }, { label: 'Bob Johnson', value: 'bob' }, ]; const settings = [ { label: 'Notifications', value: 'notifications' }, { label: 'Privacy', value: 'privacy' }, { label: 'Account', value: 'account' }, ]; return ( <> ); }