chore: lint

This commit is contained in:
karishmas6
2024-06-15 21:06:22 +05:30
parent e07d47d941
commit 366d0d2cdd

View File

@@ -10,22 +10,22 @@ interface BreakpointButtonProps {
export const BreakpointButton =
({ handleClick, size, changeColor }: BreakpointButtonProps) => {
return (
<IconButton aria-label="add" size={size || "small"} onClick={handleClick}
sx={{
"&:hover": {
background: 'transparent',
}
}}
>
<Circle sx={{
fontSize: '1rem',
marginLeft: '5px',
color: changeColor ? 'red': 'gray',
"&:hover": {
color: changeColor ? 'darkRed' : 'dimgray',
}
}}/>
</IconButton>
);
};
return (
<IconButton aria-label="add" size={size || "small"} onClick={handleClick}
sx={{
"&:hover": {
background: 'transparent',
}
}}
>
<Circle sx={{
fontSize: '1rem',
marginLeft: '5px',
color: changeColor ? 'red' : 'gray',
"&:hover": {
color: changeColor ? 'darkRed' : 'dimgray',
}
}} />
</IconButton>
);
};