Skip to content

Commit

Permalink
fix: try improving baseline by updatig gtext color
Browse files Browse the repository at this point in the history
  • Loading branch information
johnf committed Oct 6, 2024
1 parent ec75ee3 commit f5269aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/icon-explorer/src/IconList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const styles = StyleSheet.create({
},
text: {
flex: 1,
color: '#000',
},
glyphCount: {
flex: 1,
Expand Down Expand Up @@ -98,7 +99,7 @@ export const IconList = ({

return (
<View style={styles.container}>
<Text>
<Text style={styles.text}>
{iconName}
{iconStyle ? ` - ${iconStyle}` : ''}
</Text>
Expand Down

0 comments on commit f5269aa

Please sign in to comment.