Files
pawol.nu/components/stats/traductions-stats.js
T

30 lines
835 B
JavaScript
Raw Normal View History

2022-05-25 06:39:09 +04:00
import PropTypes from 'prop-types'
import Typography from '@mui/material/Typography'
import Box from '@mui/material/Box'
import Grid from '@mui/material/Grid'
import BarStats from './bar-stats'
export default function TraductionsStats({value, total}) {
const translated = total - value
const percent = (translated / total) * 100
return (
<Box sx={{width: '100%'}}>
<Grid container rowSpacing={3} columnSpacing={6} justifyContent='space-around'>
<Grid item xs={12} md={6}>
2022-06-04 01:38:19 +04:00
<Typography style={{fontWeight: 'bold'}} align='center' variant='h6'>
2022-05-25 06:39:09 +04:00
{translated}
</Typography>
</Grid>
</Grid>
<BarStats value={value} percent={percent} />
</Box>
)
}
TraductionsStats.propTypes = {
value: PropTypes.number.isRequired,
total: PropTypes.number.isRequired
}