import React from 'react'; import { View, Text, TouchableOpacity, StyleSheet, Image } from 'react-native'; import PopUpModal from '../Components/PopUpModal'; import { ReadyToPostModalProps } from './interfaces'; import { getIcon, getColor } from '../helpers'; import { withTheme } from '../../../theme'; const BoardDropdownModal: React.FC = props => { const { show, close, onPost } = props; return ( Ready to post? Post Make changes ); }; export default withTheme(BoardDropdownModal); const styles = StyleSheet.create({ container: { paddingHorizontal: 20, width: '100%', alignItems: 'center' }, header: { flexDirection: 'row', alignItems: 'center', marginBottom: 24 }, icon: { height: 24, width: 24, marginRight: 16 }, headerText: { fontSize: 24, fontWeight: '600', lineHeight: 29 }, button: { backgroundColor: '#fff', width: '100%', alignItems: 'center', height: 54, borderRadius: 30, borderWidth: 1, borderColor: getColor('mossGreen'), justifyContent: 'center', marginBottom: 16 }, buttonText: { fontSize: 16, fontWeight: '600', color: getColor('black') }, primaryButton: { backgroundColor: getColor('mossGreen') }, primaryButtonText: { color: '#fff' } });