···11+import React from 'react'
22+import {View} from 'react-native'
33+44+import {atoms as a} from '#/alf'
55+import {Admonition} from '#/components/Admonition'
66+import {InlineLinkText} from '#/components/Link'
77+import {H1} from '#/components/Typography'
88+99+export function Admonitions() {
1010+ return (
1111+ <View style={[a.gap_md]}>
1212+ <H1>Admonitions</H1>
1313+1414+ <Admonition>The quick brown fox jumps over the lazy dog.</Admonition>
1515+ <Admonition type="info">
1616+ How happy the blameless vestal's lot, the world forgetting by the world
1717+ forgot.{' '}
1818+ <InlineLinkText
1919+ label="test"
2020+ to="https://letterboxd.com/film/eternal-sunshine-of-the-spotless-mind/">
2121+ Eternal sunshine of the spotless mind
2222+ </InlineLinkText>
2323+ ! Each pray'r accepted, and each wish resign'd.
2424+ </Admonition>
2525+ <Admonition type="tip">
2626+ The quick brown fox jumps over the lazy dog.
2727+ </Admonition>
2828+ <Admonition type="warning">
2929+ The quick brown fox jumps over the lazy dog.
3030+ </Admonition>
3131+ <Admonition type="error">
3232+ The quick brown fox jumps over the lazy dog.
3333+ </Admonition>
3434+ </View>
3535+ )
3636+}
+3-1
src/view/screens/Storybook/index.tsx
···77import {ListContained} from '#/view/screens/Storybook/ListContained'
88import {atoms as a, ThemeProvider, useTheme} from '#/alf'
99import {Button, ButtonText} from '#/components/Button'
1010+import {Admonitions} from './Admonitions'
1011import {Breakpoints} from './Breakpoints'
1112import {Buttons} from './Buttons'
1213import {Dialogs} from './Dialogs'
···8081 </Button>
8182 </View>
82838383- <Forms />
8484+ <Admonitions />
84858586 <ThemeProvider theme="light">
8687 <Theming />
···9293 <Theming />
9394 </ThemeProvider>
94959696+ <Forms />
9597 <Buttons />
9698 <Typography />
9799 <Spacing />