chore: lint

This commit is contained in:
karishmas6
2024-06-15 21:07:23 +05:30
parent 979d02f49d
commit f5c6705f9c

View File

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