From 208d17879f578efd3d42f72836de162a3b1bfbd1 Mon Sep 17 00:00:00 2001 From: Hamzat Victor Date: Fri, 6 Sep 2024 20:07:29 +0100 Subject: [PATCH] feat: add extra small btn variant --- frontend/components/ui/button.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/components/ui/button.tsx b/frontend/components/ui/button.tsx index 06ff53f..e0720b0 100644 --- a/frontend/components/ui/button.tsx +++ b/frontend/components/ui/button.tsx @@ -22,6 +22,7 @@ const buttonVariants = cva( }, size: { default: "h-9 px-4 py-2", + xs: "h-6 px-2.5 py-1.5 rounded-sm text-[0.7rem]", sm: "h-8 rounded-md px-3 text-xs", lg: "h-10 rounded-md px-8", icon: "h-9 w-9",