import React from 'react'; import { Image, ImageStyle, StyleProp } from 'react-native'; import Icons from '../constants/Icons'; export default function ExpoAPIIcon({ name, style, }: { name: string; style?: StyleProp; }) { const icon = React.useMemo(() => (Icons[name] || Icons.Default)(), [name]); return ; }