From 880261224375d38ff0b477f424a5db3d1818a72e Mon Sep 17 00:00:00 2001 From: Kira Date: Thu, 10 Jun 2021 09:58:23 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-7826=20refactor:=20=E8=A1=A5=E5=85=85pro?= =?UTF-8?q?ps=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/single/label/icon.label.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/typescript/base/single/label/icon.label.ts b/typescript/base/single/label/icon.label.ts index 539c03b2a..d8c3e9a3f 100644 --- a/typescript/base/single/label/icon.label.ts +++ b/typescript/base/single/label/icon.label.ts @@ -2,4 +2,9 @@ import { Single } from '../single'; export declare class IconLabel extends Single { static xtype: string; + + props: { + iconWidth: number; + iconHeight: number; + } & Single['props']; }