React Router adds an active class to NavLinks when you are on the page that they link to. How can I access this property with Styled Components. I need to styled me
active
const StyledLink = styled(NavLink)` color: blue; &.active { color: red; } `;