Is there anything wrong with using classnames within styled components like so:
export const StyledNav = styled.nav`
background-color: ${({ theme }) => theme.backgroundSecondary};
.logo-container {
width: 201px;
img {
padding: 28px 24.47px 26.78px 24px;
}
}
`;
here I used the classname logo-container rather than making an entire new styled component for that.