Textarea.js 527 B

1234567891011121314151617181920212223
  1. import variable from "./../variables/platform";
  2. export default (variables = variable) => {
  3. const textAreaTheme = {
  4. ".underline": {
  5. borderBottomWidth: variables.borderWidth,
  6. marginTop: 5,
  7. borderColor: variables.inputBorderColor
  8. },
  9. ".bordered": {
  10. borderWidth: 1,
  11. marginTop: 5,
  12. borderColor: variables.inputBorderColor
  13. },
  14. color: variables.textColor,
  15. paddingLeft: 10,
  16. paddingRight: 5,
  17. fontSize: 15,
  18. textAlignVertical: "top"
  19. };
  20. return textAreaTheme;
  21. };