From acd67d21e7a5cd85d81ff5bfae102027ee402236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Knejzl=C3=ADk?= Date: Thu, 17 Jan 2019 02:22:34 +0100 Subject: [PATCH] Fix NoticeIcon tab typings for skeletonProps (#3400) The attribute `skeletonProps` in NoticeIcon tab has default value of `{}` so it doesn't necessary have to be required as stated in typings. This PR fixes it be optional. --- src/components/NoticeIcon/NoticeIconTab.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NoticeIcon/NoticeIconTab.d.ts b/src/components/NoticeIcon/NoticeIconTab.d.ts index 0f8037cb..6ffaf032 100644 --- a/src/components/NoticeIcon/NoticeIconTab.d.ts +++ b/src/components/NoticeIcon/NoticeIconTab.d.ts @@ -20,7 +20,7 @@ export interface INoticeIconTabProps { name?: string; showClear?: boolean; skeletonCount?: number; - skeletonProps: SkeletonProps; + skeletonProps?: SkeletonProps; style?: React.CSSProperties; title?: string; } -- GitLab