Files
bsky-social-app/src/screens/PostThread/components/ThreadItemReplyComposer.tsx
T
Samuel Newman 5c50e10205 Align avatar in reply prompt (#8501)
* align avi in reply prompt

* update skellie
2025-06-16 08:20:17 -07:00

21 lines
581 B
TypeScript

import {View} from 'react-native'
import {atoms as a, useBreakpoints, useTheme} from '#/alf'
import * as Skele from '#/components/Skeleton'
export function ThreadItemReplyComposerSkeleton() {
const t = useTheme()
const {gtMobile} = useBreakpoints()
if (!gtMobile) return null
return (
<View style={[a.px_sm, a.py_xs, a.border_t, t.atoms.border_contrast_low]}>
<View style={[a.flex_row, a.align_center, a.gap_sm, a.px_sm, a.py_sm]}>
<Skele.Circle size={24} />
<Skele.Text style={[a.text_md, {maxWidth: 119}]} />
</View>
</View>
)
}