diff options
Diffstat (limited to 'src/view/screens/Storybook/Links.tsx')
-rw-r--r-- | src/view/screens/Storybook/Links.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/view/screens/Storybook/Links.tsx b/src/view/screens/Storybook/Links.tsx index d35db79bc..465ce0d6f 100644 --- a/src/view/screens/Storybook/Links.tsx +++ b/src/view/screens/Storybook/Links.tsx @@ -13,18 +13,20 @@ export function Links() { <H1>Links</H1> <View style={[a.gap_md, a.align_start]}> - <InlineLinkText to="https://google.com" style={[a.text_lg]}> + <InlineLinkText label="foo" to="https://google.com" style={[a.text_lg]}> https://google.com </InlineLinkText> - <InlineLinkText to="https://google.com" style={[a.text_lg]}> + <InlineLinkText label="foo" to="https://google.com" style={[a.text_lg]}> External with custom children (google.com) </InlineLinkText> <InlineLinkText + label="foo" to="https://bsky.social" style={[a.text_md, t.atoms.text_contrast_low]}> Internal (bsky.social) </InlineLinkText> <InlineLinkText + label="foo" to="https://bsky.app/profile/bsky.app" style={[a.text_md]}> Internal (bsky.app) |