feat: downsize flow app icons

This commit is contained in:
Ali BARIN
2022-08-07 12:13:24 +02:00
parent 2e980664ac
commit ca141b1076
3 changed files with 5 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ export default function FlowAppIcons(props: FlowAppIconsProps) {
name=" "
variant="rounded"
url={firstStep.iconUrl}
imgProps={{ width: 30, height: 30}}
sx={{ width: 30, height: 30 }}
/>
{intermeaditeStepCount > 0 && <IntermediateStepCount count={intermeaditeStepCount} />}
@@ -30,6 +30,7 @@ export default function FlowAppIcons(props: FlowAppIconsProps) {
name=" "
variant="rounded"
url={lastStep.iconUrl}
sx={{ width: 30, height: 30 }}
/>}
</>
)