import {View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {logger} from '#/logger' import {atoms as a, useTheme} from '#/alf' import {Button} from '#/components/Button' import {EyeSlash_Stroke2_Corner0_Rounded as EyeSlash} from '#/components/icons/EyeSlash' import {Text} from '#/components/Typography' export function ThreadItemShowOtherReplies({onPress}: {onPress: () => void}) { const {_} = useLingui() const t = useTheme() const label = _(msg`Show more replies`) return ( ) }