Skip to content

Commit 7832a53

Browse files
committed
fix border radius and fill color
1 parent 707a4af commit 7832a53

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/SubscriptAvatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function SubscriptAvatar({mainAvatar, secondaryAvatar, subscriptIcon, size = CON
127127
width={subscriptIcon.width}
128128
height={subscriptIcon.height}
129129
additionalStyles={styles.alignSelfCenter}
130-
fill={subscriptIcon.fill ?? theme.icon}
130+
fill={subscriptIcon.fill}
131131
/>
132132
</View>
133133
)}

src/styles/utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ function getAvatarSubscriptIconContainerStyle(iconWidth = 16, iconHeight = 16):
294294
bottom: -4,
295295
right: -4,
296296
borderWidth,
297-
borderRadius: borderWidth,
297+
borderRadius: 2 + borderWidth,
298298
width: containerWidth,
299299
height: containerHeight,
300300
};

0 commit comments

Comments
 (0)