Skip to content

Commit a6be298

Browse files
authored
Infra/ TextArea to Design Tokens (wix#2261)
1 parent 4a40557 commit a6be298

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/textArea/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from 'react';
22
import {View, TextInput as RNTextInput, StyleSheet} from 'react-native';
33
import {TextInputPropTypes} from 'deprecated-react-native-prop-types';
44
import BaseInput from '../baseInput';
5+
import {Colors} from '../../style';
56

67
/**
78
* @description: a wrapper for Text Field component to create enclosed text area
@@ -30,6 +31,8 @@ export default class TextArea extends BaseInput {
3031
return (
3132
<View style={this.styles.container}>
3233
<RNTextInput
34+
placeholderTextColor={Colors.$textNeutral}
35+
color={Colors.$textDefault}
3336
{...this.props}
3437
value={value}
3538
multiline

0 commit comments

Comments
 (0)