From ae0375c77806981ca9e0ceccfdaffc5cf85311c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artur=20Bie=C5=84?= Date: Tue, 19 Feb 2019 10:54:10 +0100 Subject: [PATCH] Delete TextArea.jsx --- src/components/TextArea.jsx | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/components/TextArea.jsx diff --git a/src/components/TextArea.jsx b/src/components/TextArea.jsx deleted file mode 100644 index 94e701e..0000000 --- a/src/components/TextArea.jsx +++ /dev/null @@ -1,30 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import cx from 'classnames'; - -const TextArea = ({ className, resize, size, placeholder, style, ...otherProps }) => { - const baseClass = 'gds-form-group__text-area-input'; - - const rootClass = cx(baseClass, className, { - [`${baseClass}--${resize}`]: resize, - [`${baseClass}--${size}`]: size - }); - - return ( -