chore: lint

This commit is contained in:
karishmas6
2024-06-15 21:06:50 +05:30
parent 366d0d2cdd
commit 979d02f49d

View File

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