diff --git a/components/chat/AccessoryBar.tsx b/components/chat/AccessoryBar.tsx new file mode 100644 index 0000000..04e04a6 --- /dev/null +++ b/components/chat/AccessoryBar.tsx @@ -0,0 +1,52 @@ +import { MaterialIcons } from '@expo/vector-icons'; +import React from 'react'; +import { StyleSheet, TouchableOpacity } from 'react-native'; +import { ThemedView } from '@/components/theme/Theme'; +import { + getLocationAsync, + pickImageAsync, + takePictureAsync, +} from '@/components/chat/mediaUtils'; + +export default class AccessoryBar extends React.Component { + render () { + const { onSend, isTyping } = this.props; + + return ( + +