From 12af84e680d402b26283c1c7248ce68fde14cb55 Mon Sep 17 00:00:00 2001 From: Vixalie Date: Tue, 12 Aug 2025 16:42:12 +0800 Subject: [PATCH] =?UTF-8?q?style(components):=20=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E7=BB=84=E4=BB=B6=E4=B8=AD=E7=9A=84=E5=9B=BA?= =?UTF-8?q?=E5=AE=9A=E6=96=87=E6=9C=AC=E5=A4=A7=E5=B0=8F=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除了 Check.tsx 和 Radio.tsx 文件中 Icon 组件的 text-[14px] 类,以适应新的设计要求。这项更改将使图标大小更加灵活,以便在不同场景下自定义样式。 --- src/components/Check.tsx | 4 ++-- src/components/Radio.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Check.tsx b/src/components/Check.tsx index c0dee05..62c5e1c 100644 --- a/src/components/Check.tsx +++ b/src/components/Check.tsx @@ -19,8 +19,8 @@ interface CheckBoxProps { } const CheckIcon = [ - () => , - () => , + () => , + () => , ]; const Check: ParentComponent = (props) => { diff --git a/src/components/Radio.tsx b/src/components/Radio.tsx index 414b175..1019923 100644 --- a/src/components/Radio.tsx +++ b/src/components/Radio.tsx @@ -19,8 +19,8 @@ interface RadioProps { } const RadioIcon = [ - () => , - () => , + () => , + () => , ]; const Radio: ParentComponent = (props) => {