mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
Update class name
This commit is contained in:
parent
2fba013fe9
commit
e1dbfc527f
1 changed files with 2 additions and 2 deletions
|
@ -39,12 +39,12 @@ interface ITextBoxProps {
|
|||
/** An input element with app-standard styles. */
|
||||
export class TextBox extends React.Component<ITextBoxProps, void> {
|
||||
public render() {
|
||||
const className = classNames('input-component', this.props.labelClassName)
|
||||
const className = classNames('text-box-component', this.props.labelClassName)
|
||||
return (
|
||||
<label className={className}>
|
||||
{this.props.label}
|
||||
|
||||
<div className='input-content'>
|
||||
<div className='text-box-content'>
|
||||
<input
|
||||
autoFocus={this.props.autoFocus}
|
||||
className={this.props.inputClassName}
|
||||
|
|
Loading…
Reference in a new issue