From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +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