const Button = styled.button` /* Adapt the colors based on primary prop */ background: ${props => window.innerWidth < 1000 ? 'palevioletred' : 'white'}; color: ${props => window.innerWidth < 1000 ? 'white' : 'palevioletred'}; font-size: 1em; margin: 1em; padding: 0.25em 1em; border: 2px solid palevioletred; border-radius: 3px; `;