Lets add or even replace the current interface with the currying one:
const Button = styled('div')({
color: 'red'
})
The nice thing about it is:
const div = styled('div')
const Button = div({
color: 'red'
})
const AnotherButton = div({
color: 'green'
})
Lets add or even replace the current interface with the currying one:
The nice thing about it is: