diff options
Diffstat (limited to 'components/TextArea')
| -rw-r--r-- | components/TextArea/index.tsx | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/components/TextArea/index.tsx b/components/TextArea/index.tsx new file mode 100644 index 0000000..c40efed --- /dev/null +++ b/components/TextArea/index.tsx @@ -0,0 +1,22 @@ +import React, { TextareaHTMLAttributes, ForwardRefRenderFunction } from 'react'; +import { getSystemStyle, SystemProps } from '../utils/systemProps'; +import inputElStyle from '../utils/inputElementStyle'; + +interface TextAreaProps +  extends TextareaHTMLAttributes<HTMLTextAreaElement>, +  SystemProps +{ } + +const TextArea: ForwardRefRenderFunction<HTMLTextAreaElement, TextAreaProps> =  +  ({ style, ...props }, ref) => { +    style = { +      ...inputElStyle, +      ...style, +    }; + +    const systemStyle = getSystemStyle(props, style); + +    return <textarea ref={ref} style={systemStyle} {...props} />; +  }; + +export default React.forwardRef(TextArea);  | 
