Files
Fluxup_PAP/node_modules/expo-symbols/src/materialImageSource.ios.ts
2026-03-10 16:18:05 +00:00

11 lines
301 B
TypeScript

import type { ImageSourcePropType } from 'react-native';
import { type AndroidSymbol } from './android';
// A noop for iOS, to improve tree shaking.
export async function unstable_getMaterialSymbolSourceAsync(
symbol: AndroidSymbol | null
): Promise<ImageSourcePropType | null> {
return null;
}