Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
120
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 20 lines 581 B view raw
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}