From 9084e0e4a8ba14c59ec2ee29f8035eb854d11e87 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 30 Dec 2022 13:20:55 -0600 Subject: Integrate profile listings into design system --- src/view/com/profile/ProfileCard.tsx | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'src/view/com/profile/ProfileCard.tsx') diff --git a/src/view/com/profile/ProfileCard.tsx b/src/view/com/profile/ProfileCard.tsx index 6ce5f29e5..5d1992b7a 100644 --- a/src/view/com/profile/ProfileCard.tsx +++ b/src/view/com/profile/ProfileCard.tsx @@ -3,26 +3,26 @@ import {StyleSheet, TouchableOpacity, View} from 'react-native' import {Link} from '../util/Link' import {Text} from '../util/text/Text' import {UserAvatar} from '../util/UserAvatar' -import {s, colors} from '../../lib/styles' +import {s} from '../../lib/styles' +import {usePalette} from '../../lib/hooks/usePalette' export function ProfileCard({ - did, handle, displayName, avatar, renderButton, onPressButton, }: { - did: string handle: string displayName?: string avatar?: string renderButton?: () => JSX.Element onPressButton?: () => void }) { + const pal = usePalette('default') return ( @@ -36,16 +36,18 @@ export function ProfileCard({ /> - + {displayName || handle} - + @{handle} {renderButton ? ( - + {renderButton()} @@ -57,9 +59,7 @@ export function ProfileCard({ const styles = StyleSheet.create({ outer: { - marginTop: 1, - backgroundColor: colors.white, - borderRadius: 6, + borderTopWidth: 1, }, layout: { flexDirection: 'row', @@ -93,7 +93,6 @@ const styles = StyleSheet.create({ paddingVertical: 7, paddingHorizontal: 14, borderRadius: 50, - backgroundColor: colors.gray1, marginLeft: 6, }, }) -- cgit 1.4.1