From 15d901ad6aace3826881cb3c6e0499f75b71df80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E9=97=AF=E9=97=AF?= <42915133+zheng-chuang@users.noreply.github.com> Date: Thu, 8 Apr 2021 17:13:10 +0800 Subject: [PATCH] fix: fix PopupCloseIconPosition type (#8480) Co-authored-by: zhengchuangchuang --- src/popup/Popup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/Popup.tsx b/src/popup/Popup.tsx index 9e9ccb7ff..e2f5b8780 100644 --- a/src/popup/Popup.tsx +++ b/src/popup/Popup.tsx @@ -31,7 +31,7 @@ export type PopupPosition = 'top' | 'left' | 'bottom' | 'right' | 'center' | ''; export type PopupCloseIconPosition = | 'top-left' | 'top-right' - | 'botttom-left' + | 'bottom-left' | 'bottom-right'; const [name, bem] = createNamespace('popup');