Next.js Discord

Discord Forum

Issue with Button

Unanswered
Somali posted this in #help-forum
Open in Discord
SomaliOP
Good evening people,
i have two gear png icons, one is white, and the other one is black,
what i want is : when i click on the General button, the gear icon displays white, and will stay white even when i click on it again, it must change only when i click on another button
i tried to toggle between them when clicked, but it is not what want
Any ideas?

1 Reply

Is that a navigation? If true, I'd build it differently, using Link instead. Then, you can leverage https://nextjs.org/docs/app/api-reference/functions/use-pathname and determine what the active route is. Based on that, you can use the icon you need. Does it make sense?