import React from 'react'; import {StyleSheet, TouchableOpacity} from 'react-native'; import UpArrowIcon from '../../assets/icons/up_arrow.svg'; import {TAGG_LIGHT_BLUE} from '../../constants'; import {normalize} from '../../utils'; interface ChatInputSubmitProps { outlined: boolean; onPress: () => void; } const SIZE = normalize(25); const ChatInputSubmit: React.FC = (props) => { const {outlined, onPress} = props; return outlined ? ( ) : ( ); }; const styles = StyleSheet.create({ submitButton: { height: SIZE, aspectRatio: 1, borderRadius: 999, justifyContent: 'center', alignItems: 'center', }, background: { backgroundColor: TAGG_LIGHT_BLUE, }, outline: { borderWidth: 1, borderColor: TAGG_LIGHT_BLUE, }, }); export default ChatInputSubmit;