import React from 'react' import {StyleSheet, TouchableOpacity, View} from 'react-native' import {Text} from '../util/text/Text' import {usePalette} from '../../lib/hooks/usePalette' export function ComposePrompt({ text = "What's up?", btn = 'Post', isReply = false, onPressCompose, }: { text?: string btn?: string isReply?: boolean onPressCompose: () => void }) { const pal = usePalette('default') return ( {text} {btn} ) } const styles = StyleSheet.create({ container: { paddingLeft: 4, paddingRight: 10, paddingVertical: 14, flexDirection: 'row', alignItems: 'center', borderTopWidth: 1, }, containerReply: { paddingHorizontal: 10, }, avatar: { width: 50, }, textContainer: { marginLeft: 10, flex: 1, }, btn: { paddingVertical: 6, paddingHorizontal: 14, borderRadius: 30, }, })