mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

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

at remove-hackfix 38 lines 855 B view raw
1import {View} from 'react-native' 2import {Trans} from '@lingui/macro' 3 4import {Logo} from '#/view/icons/Logo' 5import {atoms as a, useTheme} from '#/alf' 6import {Text} from '#/components/Typography' 7 8export function Badge() { 9 const t = useTheme() 10 return ( 11 <View style={[a.align_start]}> 12 <View 13 style={[ 14 a.pl_md, 15 a.pr_lg, 16 a.py_sm, 17 a.rounded_full, 18 a.flex_row, 19 a.align_center, 20 a.gap_xs, 21 { 22 backgroundColor: t.palette.primary_25, 23 }, 24 ]}> 25 <Logo fill={t.palette.primary_600} width={14} /> 26 <Text 27 style={[ 28 a.font_semi_bold, 29 { 30 color: t.palette.primary_600, 31 }, 32 ]}> 33 <Trans>Announcement</Trans> 34 </Text> 35 </View> 36 </View> 37 ) 38}