styled componets add attribute
/* just add .attrs({}) */
/* Let's say we have a loading button that always needs to be disabled */
const CustomLoadingButton = styled.div.attrs(disabled: true)`
  background-color #ffc000;
  color: black;
  padding: 8px;
`
