fixed numbers getting inverted

This commit is contained in:
Anish Roy
2023-01-22 14:07:07 +00:00
parent 3e0b429292
commit 3ba7b0d3b2

View File

@@ -92,7 +92,17 @@ export default function SteppedAccordion({
}
{...labelButtonProps}
>
<StepLabel error={error} {...labelProps}>
<StepLabel
error={error}
{...labelProps}
StepIconProps={{
sx: {
"&.Mui-active": {
transform: "rotate(0deg) !important",
},
},
}}
>
{title}
{content && <ExpandIcon sx={{ mr: -0.5 }} />}
</StepLabel>