Olá , boa tarde, por algum motivo no Btn Cabecario, as cores primarias não aparecem e não onde está ocorrendo o erro. Segue o meu código, cabecario
import React from "react"; import bank_logo from "../../assets/images/bank_logo.svg"; import styled from "styled-components" import { corPrimaria } from "../UI/variaveis";
const StyledHeader = styled.navbackground-color: ${corPrimaria};
display: flex;
justify-content: space-between;
padding: 0 15vw;
height: 10vh;
align-items: center;
const Logo = styled.imgheight: 50px;
width: 50px;
const BtnCabecalho = styled.atext-align: center;
border-radius: 3px;
padding: 5px 20px;
margin: 0 10px;
font-weight: 600;
border: 2px solid white;
background:${(props) => (props.primary ? 'white' : corPrimaria)}
color:${(props) => (props.primary ? corPrimaria : 'white')}
const Cabecalho = () => { return (
export default Cabecalho;