I am trying to write styles for :hover and :focus inside react component. Here is what I have tried.
This is my component
<MyBtn className={classes.authBtn}> This is sample text </MyBtn>
In my styles object, I have tried these following some documents I have found on the web.
authBtn: {
'&:hover': {
backgroundColor: '#1565C0'
}
}
Next,
'authBtn_hover': {
backgroundColor: '#1565C0'
}
Next,
authBtn: {
':hover': {
backgroundColor: '#1565C0'
}
}