import {View} from 'react-native' import {useEnableSquareAvatars} from '#/state/preferences/enable-square-avatars' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import * as Skele from '#/components/Skeleton' export function ThreadItemReplyComposerSkeleton() { const t = useTheme() const {gtMobile} = useBreakpoints() const enableSquareAvatars = useEnableSquareAvatars() if (!gtMobile) return null return ( ) }