11 lines
301 B
TypeScript
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;
|
|
}
|