Skip to content

Instantly share code, notes, and snippets.

@lagoushque
Created March 5, 2017 13:48
Show Gist options
  • Save lagoushque/ec052fb1a7620a12eac1c6af209fc9cb to your computer and use it in GitHub Desktop.
Save lagoushque/ec052fb1a7620a12eac1c6af209fc9cb to your computer and use it in GitHub Desktop.
const getColor_ = ({active, activeColor, inactiveColor, theme}) => {
if (typeof active === 'undefined') {
return theme.blueHighlight
}
return active ? activeColor || theme.blueHighlight :
inactiveColor || theme.inactiveButton
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment