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 46 lines 1.1 kB view raw
1import {View} from 'react-native' 2import {Trans} from '@lingui/react/macro' 3 4import {atoms as a, useTheme} from '#/alf' 5import {CircleCheck_Stroke2_Corner0_Rounded} from '#/components/icons/CircleCheck' 6import {Text} from '#/components/Typography' 7 8export function ShowLessFollowup() { 9 const t = useTheme() 10 return ( 11 <View 12 style={[ 13 t.atoms.border_contrast_low, 14 a.border_t, 15 t.atoms.bg_contrast_25, 16 a.p_sm, 17 ]}> 18 <View 19 style={[ 20 t.atoms.bg, 21 t.atoms.border_contrast_low, 22 a.border, 23 a.rounded_sm, 24 a.p_md, 25 a.flex_row, 26 a.gap_sm, 27 ]}> 28 <CircleCheck_Stroke2_Corner0_Rounded 29 style={[t.atoms.text_contrast_low]} 30 size="sm" 31 /> 32 <Text 33 style={[ 34 a.flex_1, 35 a.text_sm, 36 t.atoms.text_contrast_medium, 37 a.leading_snug, 38 ]}> 39 <Trans> 40 Thank you for your feedback! It has been sent to the feed operator. 41 </Trans> 42 </Text> 43 </View> 44 </View> 45 ) 46}