import React, { FC } from 'react'; import { Image, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; export type TMenuCard = { enabled: boolean; title: string; onTap: () => void; }; const MenuCard: FC = ({ title, onTap, enabled }) => { return ( {title} ); }; export default MenuCard; const styles = StyleSheet.create({ title: { color: '#241f1f', fontSize: 14, marginTop: 8, fontWeight: '500', }, button: { flexDirection: 'column', alignItems: 'center', }, img: { height: 24, width: 24, tintColor: 'white', }, });