fix:Change button cursor to pointer on hover

This commit is contained in:
Mujtaba 2024-10-04 13:07:25 +05:00
parent fde1efa154
commit 220cad3086
1 changed files with 3 additions and 3 deletions

View File

@ -188,7 +188,7 @@ export const Filters = () => {
<div className="flex-1">{betweenDates}</div>
<div
className={clsx(
'border border-tableBorder p-[10px]',
'border border-tableBorder p-[10px] cursor-pointer',
week.display === 'day' && 'bg-tableBorder'
)}
onClick={setDay}
@ -197,7 +197,7 @@ export const Filters = () => {
</div>
<div
className={clsx(
'border border-tableBorder p-[10px]',
'border border-tableBorder p-[10px] cursor-pointer',
week.display === 'week' && 'bg-tableBorder'
)}
onClick={setWeek}
@ -206,7 +206,7 @@ export const Filters = () => {
</div>
<div
className={clsx(
'border border-tableBorder p-[10px]',
'border border-tableBorder p-[10px] cursor-pointer',
week.display === 'month' && 'bg-tableBorder'
)}
onClick={setMonth}