forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1import {View} from 'react-native'
2
3import {atoms as a, useBreakpoints, useTheme} from '#/alf'
4import * as Skele from '#/components/Skeleton'
5
6export function ThreadItemReplyComposerSkeleton() {
7 const t = useTheme()
8 const {gtMobile} = useBreakpoints()
9
10 if (!gtMobile) return null
11
12 return (
13 <View style={[a.px_sm, a.py_xs, a.border_t, t.atoms.border_contrast_low]}>
14 <View style={[a.flex_row, a.align_center, a.gap_sm, a.px_sm, a.py_sm]}>
15 <Skele.Circle size={24} />
16 <Skele.Text style={[a.text_md, {maxWidth: 119}]} />
17 </View>
18 </View>
19 )
20}