import { Ionicons } from "@expo/vector-icons"; import type React from "react"; import { View } from "react-native"; import { Text } from "@/components/common/Text"; import { ListItem } from "@/components/list/ListItem"; import { type OptionGroup, PlatformDropdown, } from "@/components/PlatformDropdown"; interface Props { title: string; valueLabel?: string; groups: OptionGroup[]; dropdownTitle?: string; disabled?: boolean; } export const SettingsSelectRow: React.FC = ({ title, valueLabel, groups, dropdownTitle, disabled, }) => ( {valueLabel} } /> );