feat: add dynamic flow app icons

This commit is contained in:
Ali BARIN
2022-08-06 23:41:39 +02:00
parent 82bdf9d3b1
commit 744b31aad6
8 changed files with 58 additions and 20 deletions

View File

@@ -12,7 +12,7 @@ export default function IntermediateStepCount(props: IntermediateStepCountProps)
return (
<Container>
<Typography variant="body2">
<Typography variant="subtitle1" sx={{ }}>
+{count}
</Typography>
</Container>

View File

@@ -7,6 +7,6 @@ export const Container = styled('div')(({ theme }) => ({
alignItems: 'center',
minWidth: 50,
height: 50,
border: '1px solid #000',
border: `1px solid ${theme.palette.text.disabled}`,
borderRadius: theme.shape.borderRadius,
}));