From 979d02f49d477f08f647c008e398712aac4af38f Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 15 Jun 2024 21:06:50 +0530 Subject: [PATCH] chore: lint --- src/components/atoms/buttons/ClearButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/atoms/buttons/ClearButton.tsx b/src/components/atoms/buttons/ClearButton.tsx index d299285e..4eabf9fa 100644 --- a/src/components/atoms/buttons/ClearButton.tsx +++ b/src/components/atoms/buttons/ClearButton.tsx @@ -10,8 +10,8 @@ interface ClearButtonProps { export const ClearButton: FC = ({ handleClick, size }) => { return ( - + sx={{ color: 'inherit', '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}> + ); };