import React from 'react'; import {StyleProp, StyleSheet, Text, View, ViewStyle} from 'react-native'; import {TAGG_TEXT_LIGHT_BLUE} from '../../constants'; import {ProfilePreviewType} from '../../types'; import {SCREEN_WIDTH} from '../../utils'; import {TouchableOpacity} from 'react-native-gesture-handler'; interface AcceptDeclineButtonsProps { requester: ProfilePreviewType; onAccept: () => void; onReject: () => void; externalStyles?: Record>; } const AcceptDeclineButtons: React.FC = ({ requester, onAccept, onReject, externalStyles, }) => { return ( Accept Reject ); }; const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'column', }, genericButtonStyle: { justifyContent: 'center', alignItems: 'center', width: SCREEN_WIDTH * 0.15, height: SCREEN_WIDTH * 0.06, borderRadius: 5, padding: 0, marginTop: 10, marginRight: '5%', }, acceptButton: { padding: 0, backgroundColor: TAGG_TEXT_LIGHT_BLUE, }, rejectButton: { borderWidth: 1, backgroundColor: 'white', borderColor: TAGG_TEXT_LIGHT_BLUE, }, acceptButtonTitleColor: { color: 'white', }, rejectButtonTitleColor: { color: TAGG_TEXT_LIGHT_BLUE, }, buttonTitle: { padding: 0, fontSize: 14, fontWeight: '800', }, }); export default AcceptDeclineButtons;