import React, { forwardRef, TextareaHTMLAttributes, useContext } from 'react'
import classNames from 'classnames'
import { ConfigContext } from '../config_provider'
type TextAreaProps = TextareaHTMLAttributes
const TextArea = forwardRef((props, ref) => {
const { fontSize } = useContext(ConfigContext)
const { className, ...rest } = props
return (
)
})
export default TextArea
export type { TextAreaProps }