Add sx to IconButton

This commit is contained in:
Nicola Benaglia
2025-06-12 19:51:45 +02:00
parent 1abda4a278
commit 1d50a96d25
13 changed files with 53 additions and 9 deletions

View File

@@ -135,6 +135,10 @@ export const BoundedNumericTextField = ({
<IconButton
size="small"
onClick={() => changeValueWithIncDecButton(1)}
sx={{
bgcolor: theme.palette.background.default,
color: theme.palette.text.primary,
}}
>
<AddIcon
sx={{
@@ -145,6 +149,10 @@ export const BoundedNumericTextField = ({
<IconButton
size="small"
onClick={() => changeValueWithIncDecButton(-1)}
sx={{
bgcolor: theme.palette.background.default,
color: theme.palette.text.primary,
}}
>
<RemoveIcon
sx={{