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