glamorous-native icon indicating copy to clipboard operation
glamorous-native copied to clipboard

Move `theme` to glamorous props

Open atticoos opened this issue 8 years ago • 1 comments

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,
}))

atticoos avatar Jul 10 '17 19:07 atticoos

Should be closable 🎉

kwelch avatar Aug 29 '17 01:08 kwelch