From 2ce3f44403a37f734cf0d689edefb33ab847a0b5 Mon Sep 17 00:00:00 2001 From: gitplus Date: Tue, 14 Sep 2021 22:09:24 +0800 Subject: [PATCH] fix(tag): prefixCls value (#4649) --- components/tag/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/tag/index.tsx b/components/tag/index.tsx index 65dba5162..965d499d1 100644 --- a/components/tag/index.tsx +++ b/components/tag/index.tsx @@ -86,11 +86,11 @@ const Tag = defineComponent({ const renderCloseIcon = () => { if (closable) { return closeIcon ? ( -
+
{closeIcon}
) : ( - + ); } return null;