From 185bcab9f925b36c7076f0354b33fb31323d2bed Mon Sep 17 00:00:00 2001 From: xfy Date: Mon, 8 Jun 2026 16:19:35 +0800 Subject: [PATCH] cleanup(forms): remove unused BUTTON_SECONDARY_CLASS --- src/components/forms.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/forms.rs b/src/components/forms.rs index e36cec2..7622955 100644 --- a/src/components/forms.rs +++ b/src/components/forms.rs @@ -4,9 +4,6 @@ pub const INPUT_CLASS: &str = "w-full px-4 py-2 border border-gray-200 dark:bord pub const BUTTON_PRIMARY_CLASS: &str = "w-full py-2 px-4 bg-gray-900 dark:bg-[#dadadb] text-white dark:text-gray-900 font-medium rounded-full hover:opacity-80 transition-opacity cursor-pointer"; -#[allow(dead_code)] -pub const BUTTON_SECONDARY_CLASS: &str = "px-6 py-2 bg-gray-200 dark:bg-[#333] text-gray-700 dark:text-[#dadadb] rounded-full font-medium hover:opacity-80 transition-opacity cursor-pointer"; - #[component] pub fn FormInput( r#type: &'static str,