mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import {View} from 'react-native'
2import {Trans} from '@lingui/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}