forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextBox.js
More file actions
37 lines (30 loc) · 900 Bytes
/
Copy pathTextBox.js
File metadata and controls
37 lines (30 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-2016 Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
import React, { Component, PropTypes } from 'react';
import s from './TextBox.scss';
import withStyles from '../../decorators/withStyles';
@withStyles(s)
class TextBox extends Component {
static propTypes = {
maxLines: PropTypes.number,
};
static defaultProps = {
maxLines: 1,
};
render() {
return (
<div className={s.root}>
{this.props.maxLines > 1 ?
<textarea {...this.props} className={s.input} ref="input" key="input" rows={this.props.maxLines} /> :
<input {...this.props} className={s.input} ref="input" key="input" />}
</div>
);
}
}
export default TextBox;