import React from 'react'; import {StyleProp, StyleSheet, Text, View, ViewStyle} from 'react-native'; import {TAGG_LIGHT_BLUE} from '../../constants'; import {ProfilePreviewType} from '../../types'; import {SCREEN_WIDTH} from '../../utils'; import {TouchableOpacity} from 'react-native-gesture-handler'; import {normalize} from '../../utils'; 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: { height: '100%', flexDirection: 'column', justifyContent: 'space-around', }, genericButtonStyle: { justifyContent: 'center', alignItems: 'center', width: SCREEN_WIDTH * 0.16, height: SCREEN_WIDTH * 0.0525, borderRadius: 3, padding: 0, }, acceptButton: { padding: 0, backgroundColor: TAGG_LIGHT_BLUE, }, rejectButton: { borderWidth: 1, backgroundColor: 'white', borderColor: TAGG_LIGHT_BLUE, }, acceptButtonTitleColor: { color: 'white', }, rejectButtonTitleColor: { color: TAGG_LIGHT_BLUE, }, buttonTitle: { padding: 0, fontWeight: '700', fontSize: normalize(11), lineHeight: normalize(13), letterSpacing: normalize(0.1), }, }); export default AcceptDeclineButtons;