···1212import * as Toast from '#/view/com/util/Toast'
1313import {ViewHeader} from '#/view/com/util/ViewHeader'
1414import {ScrollView} from '#/view/com/util/Views'
1515-import {atoms as a, useTheme} from '#/alf'
1515+import {atoms as a} from '#/alf'
1616+import {Admonition} from '#/components/Admonition'
1617import {Divider} from '#/components/Divider'
1718import * as Toggle from '#/components/forms/Toggle'
1819import {Text} from '#/components/Typography'
···2324type Props = NativeStackScreenProps<CommonNavigatorParams, 'MessagesSettings'>
2425export function MessagesSettingsScreen({}: Props) {
2526 const {_} = useLingui()
2626- const t = useTheme()
2727 const {currentAccount} = useSession()
2828 const {data: profile} = useProfileQuery({
2929 did: currentAccount!.did,
···9999 </Toggle.Item>
100100 </View>
101101 </Toggle.Group>
102102- <View
103103- style={[
104104- a.mt_sm,
105105- a.px_xl,
106106- a.py_lg,
107107- a.rounded_md,
108108- t.atoms.bg_contrast_25,
109109- ]}>
110110- <Text style={[t.atoms.text_contrast_high, a.leading_snug]}>
111111- <Trans>
112112- You can continue ongoing conversations regardless of which setting
113113- you choose.
114114- </Trans>
115115- </Text>
116116- </View>
102102+ <Admonition type="tip">
103103+ <Trans>
104104+ You can continue ongoing conversations regardless of which setting
105105+ you choose.
106106+ </Trans>
107107+ </Admonition>
117108 {isNative && (
118109 <>
119110 <Divider style={a.my_md} />
+8-16
src/view/screens/NotificationsSettings.tsx
···1010import {ViewHeader} from '#/view/com/util/ViewHeader'
1111import {ScrollView} from '#/view/com/util/Views'
1212import {atoms as a, useTheme} from '#/alf'
1313+import {Admonition} from '#/components/Admonition'
1314import {Error} from '#/components/Error'
1415import * as Toggle from '#/components/forms/Toggle'
1516import {Loader} from '#/components/Loader'
···7172 </Toggle.Item>
7273 </View>
7374 </Toggle.Group>
7474- <View
7575- style={[
7676- a.mt_sm,
7777- a.px_xl,
7878- a.py_lg,
7979- a.rounded_md,
8080- t.atoms.bg_contrast_25,
8181- ]}>
8282- <Text style={[t.atoms.text_contrast_high, a.leading_snug]}>
8383- <Trans>
8484- Experimental: When this preference is enabled, you'll only
8585- receive reply and quote notifications from users you follow.
8686- We'll continue to add more controls here over time.
8787- </Trans>
8888- </Text>
8989- </View>
7575+ <Admonition type="warning" style={[a.mt_sm]}>
7676+ <Trans>
7777+ Experimental: When this preference is enabled, you'll only receive
7878+ reply and quote notifications from users you follow. We'll
7979+ continue to add more controls here over time.
8080+ </Trans>
8181+ </Admonition>
9082 </View>
9183 )}
9284 </ScrollView>