import * as React from 'react'; import { StyleProp, StyleSheet, Text, TextStyle } from 'react-native'; type Props = { color?: string; size?: number; style?: StyleProp; }; export function MissingIcon({ color, size, style }: Props) { return ; } const styles = StyleSheet.create({ icon: { backgroundColor: 'transparent', }, });