diff options
Diffstat (limited to 'src/view/screens/Storybook/Typography.tsx')
-rw-r--r-- | src/view/screens/Storybook/Typography.tsx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/view/screens/Storybook/Typography.tsx b/src/view/screens/Storybook/Typography.tsx index ecd6ec888..1aa334ac2 100644 --- a/src/view/screens/Storybook/Typography.tsx +++ b/src/view/screens/Storybook/Typography.tsx @@ -2,20 +2,12 @@ import React from 'react' import {View} from 'react-native' import {atoms as a} from '#/alf' -import {Text, H1, H2, H3, H4, H5, H6, P} from '#/components/Typography' +import {Text} from '#/components/Typography' import {RichText} from '#/components/RichText' export function Typography() { return ( <View style={[a.gap_md]}> - <H1>H1 Heading</H1> - <H2>H2 Heading</H2> - <H3>H3 Heading</H3> - <H4>H4 Heading</H4> - <H5>H5 Heading</H5> - <H6>H6 Heading</H6> - <P>P Paragraph</P> - <Text style={[a.text_5xl]}>atoms.text_5xl</Text> <Text style={[a.text_4xl]}>atoms.text_4xl</Text> <Text style={[a.text_3xl]}>atoms.text_3xl</Text> |