Prettify chart files

This commit is contained in:
Sofiya Tepikin
2022-08-23 12:52:38 +02:00
parent f72994082c
commit 732f19ed63
8 changed files with 67 additions and 73 deletions
+4 -4
View File
@@ -18,21 +18,21 @@ const ChartLegend = ({ height }) => {
}
ChartLegend.propTypes = {
height: PropTypes.number.isRequired
height: PropTypes.number.isRequired,
}
const styles = StyleSheet.create({
container: {
alignItems: 'center',
justifyContent: 'flex-end',
width: CHART_YAXIS_WIDTH
width: CHART_YAXIS_WIDTH,
},
text: {
...Typography.label,
},
textBold: {
...Typography.labelBold
}
...Typography.labelBold,
},
})
export default ChartLegend