From 771b1387fe44e1b1bda9faa0c02bb39f60a88da3 Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Tue, 2 Sep 2025 14:23:06 +0200 Subject: [PATCH] style(ui): add cursor-pointer class to Button component for better UX --- ui/src/components/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/Button.tsx b/ui/src/components/Button.tsx index 97fcc5f6..b7f09501 100644 --- a/ui/src/components/Button.tsx +++ b/ui/src/components/Button.tsx @@ -175,7 +175,7 @@ type ButtonPropsType = Pick< export const Button = React.forwardRef( ({ type, disabled, onClick, formNoValidate, loading, fetcher, ...props }, ref) => { const classes = cx( - "group outline-hidden", + "group outline-hidden cursor-pointer", props.fullWidth ? "w-full" : "", loading ? "pointer-events-none" : "", );