Textarea.js 547 B

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