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