import React, { Fragment, useState } from 'react'; import { SafeAreaView, TouchableOpacity, } from 'react-native'; import Button from './Button'; import Row from '../Row'; import Icon from '../Icon'; import Modal from '../Modal'; import { Body, } from '../text'; const Selector = ({ multiSelect = false, onSelect, options = [], ...others }) => { const [open, setOpen] = useState(false); return (