diff --git a/packages/fscomponents/src/styles/ReviewIndicator.ts b/packages/fscomponents/src/styles/ReviewIndicator.ts index 1bebbbdc1a..e0a578589e 100644 --- a/packages/fscomponents/src/styles/ReviewIndicator.ts +++ b/packages/fscomponents/src/styles/ReviewIndicator.ts @@ -1,5 +1,6 @@ import { ImageStyle, + Platform, RegisteredStyle, StyleSheet, TextStyle, @@ -19,7 +20,12 @@ export const style = StyleSheet.create({ color: '#333132', textAlign: 'center', fontFamily: 'Arial', - includeFontPadding: false + // includeFontPadding is not a valid property for web/ios + ...Platform.select({ + android: { + includeFontPadding: false + } + }) }, emptyStar: { color: '#e0e1e2'