chore: lint

This commit is contained in:
karishmas6
2024-06-15 21:07:42 +05:30
parent f5c6705f9c
commit 31f35c42a6

View File

@@ -10,8 +10,8 @@ interface RemoveButtonProps {
export const RemoveButton: FC<RemoveButtonProps> = ({ handleClick, size }) => { export const RemoveButton: FC<RemoveButtonProps> = ({ handleClick, size }) => {
return ( return (
<IconButton aria-label="add" size={size || "small"} onClick={handleClick} <IconButton aria-label="add" size={size || "small"} onClick={handleClick}
sx={{'&:hover': { color: '#1976d2', backgroundColor: 'transparent' }}}> sx={{ '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}>
<Remove/> <Remove />
</IconButton> </IconButton>
); );
}; };