import { Ionicons } from '@expo/vector-icons'; import * as React from 'react'; import { TouchableOpacity, View } from 'react-native'; export function HeaderContainerRight( props: React.ComponentProps & { children?: any; } ) { return ; } type Props = { color?: string; disabled?: boolean; name: string; onPress: () => void; size?: number; }; export default function HeaderIconButton({ color = 'blue', disabled, name, onPress, size = 24, }: Props) { return ( ); }