I am using the styled-components
npm package and need to add the aria-haspopup
attribute to my extended Button component. I have tried the following, but this doesn't add the attribute:
import Button from './button';
const StyledBtn = Button.attrs({
'aria-haspopup': 'true',
}).extend``;