glamorous-native
glamorous-native copied to clipboard
Move `theme` to glamorous props
This is a parity story to https://github.com/paypal/glamorous/issues/219.
Before
const MyText = glamorous.text((props, theme) => ({
fontSize: theme.main.fontSize,
}))
After
const MyText = glamorous.text(({theme}) => ({
fontSize: theme.main.fontSize,
}))
Should be closable 🎉