```ts const Button = styled('button', { data: { enabled: $enabled, theme: $theme } })` color: red; ` ``` What about redefining? ```ts Button({ data: { enabled: $another } }) ``` What props should win?
What about redefining?
What props should win?