Skip to content

Instantly share code, notes, and snippets.

@samueljmurray
Created August 30, 2017 15:04
Show Gist options
  • Select an option

  • Save samueljmurray/eed0515cf15912050c50484356c5e6e0 to your computer and use it in GitHub Desktop.

Select an option

Save samueljmurray/eed0515cf15912050c50484356c5e6e0 to your computer and use it in GitHub Desktop.
Form styles using text mixins
/* formStyles.js */
import { errorText } from "textMixins";
export default StyleSheet.create({
formErrorMessage: {
...errorText,
fontSize: 22,
},
fieldErrorMessage: {
...errorText,
fontSize: 18,
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment