diff --git a/packages/yoga/src/Stepper/native/Dots.jsx b/packages/yoga/src/Stepper/native/Dots.jsx index 6951bdce62..c14f720d48 100644 --- a/packages/yoga/src/Stepper/native/Dots.jsx +++ b/packages/yoga/src/Stepper/native/Dots.jsx @@ -43,7 +43,7 @@ const Dot = styled.View( const Label = styled(Text.Bold)( ({ active, - secondary, + secondary, theme: { yoga: { components: { stepper }, @@ -53,16 +53,16 @@ const Label = styled(Text.Bold)( const state = secondary ? 'secondary' : 'active'; return css` - width: 95px; + width: 95px; margin-top: 10px; margin-left: -40px; color: ${active ? stepper.label.color[state] - : stepper.label.color.inactive}; + : stepper.label.color.inactive}; font-size: ${stepper.label.font.size}px; - text-align: center; + text-align: center; `; }, );