import React from 'react'; import { Text, TouchableOpacity, View } from 'react-native'; import type { TouchableOpacityProps } from 'react-native'; import type { ActionButtonVariant, DefaultTheme } from '../../../types'; import { config } from '../config'; import styles from './MenuItem.styles'; interface MenuItemProps { children: string; onPress: TouchableOpacityProps['onPress']; theme: DefaultTheme; variant?: ActionButtonVariant; } const MenuItem: React.FC = ({ children, onPress, theme, variant = 'default' }) => { return ( {children} ); }; export default MenuItem;