Update icon color in thumb-navigation

merge-requests/3314/head
danidfra 2025-01-27 11:56:57 -03:00
rodzic 96295be70b
commit 19d912a42c
1 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -37,9 +37,9 @@ const ThumbNavigationLink: React.FC<IThumbNavigationLink> = ({ count, countMax,
<IconWithCounter
src={icon}
className={clsx({
'h-5 w-5': true,
'text-gray-600 black:text-white': !active,
'text-primary-500': active,
'size-5': true,
'text-gray-600 black:text-white': active,
'text-primary-500': !active,
})}
count={count}
countMax={countMax}
@ -48,9 +48,9 @@ const ThumbNavigationLink: React.FC<IThumbNavigationLink> = ({ count, countMax,
<Icon
src={icon}
className={clsx({
'h-5 w-5': true,
'text-gray-600 black:text-white': !active,
'text-primary-500': active,
'size-5': true,
'text-white': active,
'text-primary-500': !active,
})}
/>
)}