import {View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' 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 PostThreadShowHiddenReplies({ type, onPress, hideTopBorder, }: { type: 'hidden' | 'muted' onPress: () => void hideTopBorder?: boolean }) { const {_} = useLingui() const t = useTheme() const label = type === 'muted' ? _(msg`Show muted replies`) : _(msg`Show hidden replies`) return ( ) }