diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 12:19:45 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 12:19:45 -0600 |
commit | 55ca7dcce1acba1440f22c20d1e1b4611aebd73d (patch) | |
tree | c34dc29e6ae3eb31865a76f8d662c1e8f8ffb101 /src/view/com/util/PostMeta.tsx | |
parent | 55500e2f66d5f30f1aedf63d4355a6b7568d4552 (diff) | |
download | voidsky-55ca7dcce1acba1440f22c20d1e1b4611aebd73d.tar.zst |
Update threads to use design system
Diffstat (limited to 'src/view/com/util/PostMeta.tsx')
-rw-r--r-- | src/view/com/util/PostMeta.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx index 4dcd74353..4cf6cb00c 100644 --- a/src/view/com/util/PostMeta.tsx +++ b/src/view/com/util/PostMeta.tsx @@ -48,16 +48,16 @@ export function PostMeta(opts: PostMetaOpts) { style={styles.metaItem} href={opts.authorHref} title={opts.authorHandle}> - <Text style={[pal.text, theme.typography.h5]} numberOfLines={1}> + <Text type="h5" style={[pal.text]} numberOfLines={1}> {displayName} {handle ? ( - <Text style={[pal.textLight, theme.typography.h6]}> + <Text type="h6" style={[pal.textLight]}> {handle} </Text> ) : undefined} </Text> </Link> - <Text style={[styles.metaItem, pal.textLight, theme.typography.h6]}> + <Text type="h6" style={[styles.metaItem, pal.textLight]}> · {ago(opts.timestamp)} </Text> <View style={s.flex1} /> |