Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Last active February 28, 2017 16:26
Show Gist options
  • Save jacobp100/7ef7b9efabb14b3cdf5d055305ee070f to your computer and use it in GitHub Desktop.
Save jacobp100/7ef7b9efabb14b3cdf5d055305ee070f to your computer and use it in GitHub Desktop.
const ButtonContainer = cssta(View)`
--primary: #e67e22;
--foreground: var(--primary);
--background: white;
...
border: 1px solid var(--primary);
background-color: var(--background);
[active] {
--foreground: white;
--background: var(--primary);
}
`;
const ButtonText = cssta(Text)`
color: var(--foreground);
text-align: center;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment