Files
automatisch/packages/web/src/components/IntermediateStepCount/index.tsx
2022-11-05 23:57:33 +01:00

23 lines
429 B
TypeScript

import * as React from 'react';
import Typography from '@mui/material/Typography';
import { Container } from './style';
type IntermediateStepCountProps = {
count: number;
};
export default function IntermediateStepCount(
props: IntermediateStepCountProps
) {
const { count } = props;
return (
<Container>
<Typography variant="subtitle1" sx={{}}>
+{count}
</Typography>
</Container>
);
}