[REM] fit-content removed

This commit is contained in:
mathysPaul
2023-11-17 10:18:29 +01:00
parent 22722082eb
commit ea6073eb71
9 changed files with 5 additions and 13 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ type IconButtonProps = {
const IconButton = (props: IconButtonProps) => {
return (
<Box>
<Button {...props} leftIcon={props.icon} width="fit-content" rounded="sm" />
<Button {...props} leftIcon={props.icon} rounded="sm" />
</Box>
);
};