So I want to build an Auth page, and what to show a button that shows a male icon but to be fair to the other gender I want to switch between them like animation between female icon and male icon with an interval for example 2-3 seconds, can't find solutions.
const [icon, setIcon] = useState('male')
{
icon === "male" ? <MaleSvg/> : <FemaleSvg />
}
I don't know how to change the state between those two options, I think something with useEffect or similar