From 6ea9285853f8c69cde7e9c55ac3dbb2c94cca164 Mon Sep 17 00:00:00 2001 From: Deep Date: Thu, 3 Jun 2021 20:56:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20fix:=20props?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/single/button/buttons/button.icon.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/base/single/button/buttons/button.icon.ts b/typescript/base/single/button/buttons/button.icon.ts index d3d6817e1..5acbea8aa 100644 --- a/typescript/base/single/button/buttons/button.icon.ts +++ b/typescript/base/single/button/buttons/button.icon.ts @@ -5,7 +5,7 @@ export declare class IconButton extends BasicButton { static EVENT_CHANGE: string; props: { - iconWidth: number; - iconHeight: number; + iconWidth?: number; + iconHeight?: number; } & BasicButton['props'] }