I have a navbar component that I have created using Styled Components. I would like to create some props that change the background-color and/or text color.
For instanc
you can also do something like this:
const colorType= { dark: '#454545', light: '#0a0a0a', normal: '#dedede' }; export const Navbar= styled.nav` background: ${({color}) => colorType[color] || `${color}`}; `;
and Here you are :