Files
automatisch/packages/web/src/components/IntermediateStepCount/index.tsx
2022-08-06 23:41:47 +02:00

20 lines
424 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>
);
}