提交 d653ef8b 编写于 作者: O oasis-cloud

fix: textarea defaultProps type error

上级 ea812409
......@@ -34,7 +34,13 @@ const defaultProps = {
disabled: false,
autosize: false,
} as TextAreaProps
export const TextArea: FunctionComponent<Partial<TextAreaProps>> = (props) => {
export const TextArea: FunctionComponent<
Partial<TextAreaProps> &
Omit<
React.HTMLAttributes<HTMLDivElement>,
'onChange' | 'onBlur' | 'onFocus'
>
> = (props) => {
const { locale } = useConfig()
const {
className,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册