diff --git a/tdrive/frontend/src/app/components/inputs/input-enter.jsx b/tdrive/frontend/src/app/components/inputs/input-enter.jsx deleted file mode 100755 index 2f8dec22..00000000 --- a/tdrive/frontend/src/app/components/inputs/input-enter.jsx +++ /dev/null @@ -1,46 +0,0 @@ -/* eslint-disable react/prop-types */ -import React, { Component } from 'react'; - -import Input from './input.jsx'; -import Icon from '@components/icon/icon.jsx'; -import './inputs.scss'; - -export default class InputEnter extends Component { - constructor() { - super(); - } - render() { - var parentClassName = ''; - - if (this.props.big) { - parentClassName += ' big '; - } - if (this.props.medium) { - parentClassName += ' medium '; - } - if (this.props.small) { - parentClassName += ' small '; - } - - if ( - parentClassName.indexOf('medium') === parentClassName.indexOf('small') && - parentClassName.indexOf('big') === parentClassName.indexOf('small') && - parentClassName.indexOf('big') < 0 - ) { - parentClassName += ' medium'; - } - - return ( -