/** @jsx jsx */ import { jsx, css } from '@emotion/react' import { forwardRef, Fragment } from 'react' import { wrapperStyle, labelStyle, textStyle, inputStyle, clearStyles, } from './Input' import Loader from './Loader' const Textarea = forwardRef( ( { label, error, onClear, isClearable, loading, hasValue, placeholder, labelProps = {}, hideLabel, ...props }, ref ) => { return (