浏览代码

fix: fix ComponentPropsWithRef type function failed with Button (#1552)

代强 2 年之前
父节点
当前提交
2f28e39025
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/semi-ui/button/index.tsx

+ 1 - 1
packages/semi-ui/button/index.tsx

@@ -19,7 +19,7 @@ class Button extends React.PureComponent<ButtonProps> {
         ...IconButton.propTypes,
     };
     static elementType: string;
-    constructor(props = {}) {
+    constructor(props: ButtonProps = {}) {
         super(props);
     }
     render() {