From ad2f16fdbb8b35b47be0b843617c6e3bbb9c10ce Mon Sep 17 00:00:00 2001 From: Samantha Kellow Date: Thu, 23 Nov 2023 16:11:59 +0000 Subject: [PATCH] styling base button --- @/components/ui/button.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/@/components/ui/button.tsx b/@/components/ui/button.tsx index ac8e0c9ad..4f69b196e 100644 --- a/@/components/ui/button.tsx +++ b/@/components/ui/button.tsx @@ -1,6 +1,6 @@ -import * as React from "react" import { Slot } from "@radix-ui/react-slot" import { cva, type VariantProps } from "class-variance-authority" +import * as React from "react" import { cn } from "@/lib/utils" @@ -10,6 +10,7 @@ const buttonVariants = cva( variants: { variant: { default: "bg-primary text-primary-foreground hover:bg-primary/90", + dark: "bg-black text-white hover:bg-primary/90", destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", outline: