fix: adjust DrawerHandle dimensions for improved UI consistency

This commit is contained in:
Anish Sarkar 2026-03-30 02:11:42 +05:30
parent cbcaa7aed8
commit 411ea3e052

View file

@ -93,7 +93,7 @@ DrawerDescription.displayName = DrawerPrimitive.Description.displayName;
function DrawerHandle({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("mx-auto mt-4 h-4 w-14 rounded-full bg-muted-foreground/40", className)}
className={cn("mx-auto mt-4 h-2 w-12 rounded-full bg-muted-foreground/40", className)}
{...props}
/>
);