import Ionicons from "@react-native-vector-icons/ionicons"; import { SymbolView } from "expo-symbols"; import type { ComponentProps } from "react"; export function NativeSymbol({ ios, android, size = 18, color = "#fff", }: { ios: string; android: ComponentProps["name"]; size?: number; color?: string; }) { return ( } /> ); }