import { Ionicons } from '@expo/vector-icons'; import { BlurView } from 'expo-blur'; import React from 'react'; import { Modal, StyleSheet, Text, TouchableOpacity, View, } from 'react-native'; interface FloatingSelectionCardProps { visible: boolean; onClose: () => void; title: string; children: React.ReactNode; } export function FloatingSelectionCard({ visible, onClose, title, children }: FloatingSelectionCardProps) { return ( {title} {children} ); } const styles = StyleSheet.create({ overlay: { flex: 1, justifyContent: 'flex-end', alignItems: 'center', }, backdrop: { position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, }, container: { alignItems: 'center', marginBottom: 40, }, blurContainer: { borderRadius: 20, overflow: 'hidden', backgroundColor: 'rgba(255, 255, 255, 0.95)', minWidth: 340, paddingVertical: 20, paddingHorizontal: 16, minHeight: 100, }, header: { paddingBottom: 20, alignItems: 'center', }, title: { fontSize: 14, fontWeight: '600', color: '#636161ff', }, content: { alignItems: 'center', }, closeButton: { marginTop: 20, }, closeButtonInner: { width: 44, height: 44, borderRadius: 22, backgroundColor: 'rgba(255, 255, 255, 0.9)', alignItems: 'center', justifyContent: 'center', shadowColor: '#000', shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.1, shadowRadius: 4, elevation: 3, }, });