const Button = styled.button` background: #f00; `; return ( <div> <Button type="button">{props.label} (1)</Button> <Button type="button">{props.label} (2)</Button> <p>Some text here</p> </div> );