You can use css function from styled components and define your styles with it. This will create a CSS class (as far as I remember) which can be be used anywhere in your application.
const sharedBtnStyles = css`
// css definiton
`
const Button1 = styled.button`
${sharedBtnStyles}
`
const Button2 = styled.button`
${sharedBtnStyles}
`
Reference if needed: https://styled-components.com/docs/api#css
You can also define a common button for your applications, then you could also target that button's css in your main container:
const Button = styled.button`
color: red;
background: blue;
`
const MainContainer = styled.div`
& ${Button} {
color: purple;
background: yellow;
}
`