From 77950e48c76f4a3b29d01831d43039caba29888a Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期二, 18 十一月 2025 14:12:42 +0800
Subject: [PATCH] 修改

---
 app/components/base/action-button/index.tsx |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/app/components/base/action-button/index.tsx b/app/components/base/action-button/index.tsx
index c90d1a8..9e4552a 100644
--- a/app/components/base/action-button/index.tsx
+++ b/app/components/base/action-button/index.tsx
@@ -8,7 +8,6 @@
   Active = 'active',
   Disabled = 'disabled',
   Default = '',
-  Hover = 'hover',
 }
 
 const actionButtonVariants = cva(
@@ -29,7 +28,7 @@
 )
 
 export type ActionButtonProps = {
-  size?: 'xs' | 's' | 'm' | 'l' | 'xl'
+  size?: 'xs' | 'm' | 'l' | 'xl'
   state?: ActionButtonState
   styleCss?: CSSProperties
 } & React.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<typeof actionButtonVariants>
@@ -42,8 +41,6 @@
       return 'action-btn-active'
     case ActionButtonState.Disabled:
       return 'action-btn-disabled'
-    case ActionButtonState.Hover:
-      return 'action-btn-hover'
     default:
       return ''
   }

--
Gitblit v1.8.0