From c9df425a75b6f09345fadcc6cd87639c08c658b5 Mon Sep 17 00:00:00 2001 From: amarmechai Date: Wed, 14 May 2025 02:16:46 +0100 Subject: [PATCH 1/2] Fix Horizontally center content inside the chip --- src/components/Chip/Chip.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Chip/Chip.tsx b/src/components/Chip/Chip.tsx index 8ed23b7436..3dfa2e0657 100644 --- a/src/components/Chip/Chip.tsx +++ b/src/components/Chip/Chip.tsx @@ -454,6 +454,7 @@ const styles = StyleSheet.create({ alignItems: 'center', paddingLeft: 4, position: 'relative', + justifyContent: "center" }, md3Content: { paddingLeft: 0, From b15bb294821bbe9fc222d45033f52abbd5293afe Mon Sep 17 00:00:00 2001 From: amarmechai Date: Wed, 14 May 2025 15:16:40 +0100 Subject: [PATCH 2/2] Replace `"center"` with `'center',` --- src/components/Chip/Chip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Chip/Chip.tsx b/src/components/Chip/Chip.tsx index 3dfa2e0657..f425d195ab 100644 --- a/src/components/Chip/Chip.tsx +++ b/src/components/Chip/Chip.tsx @@ -454,7 +454,7 @@ const styles = StyleSheet.create({ alignItems: 'center', paddingLeft: 4, position: 'relative', - justifyContent: "center" + justifyContent: 'center', }, md3Content: { paddingLeft: 0,