diff --git a/resources/views/components/button.blade.php b/resources/views/components/button.blade.php index 678ae591e..b406a051b 100644 --- a/resources/views/components/button.blade.php +++ b/resources/views/components/button.blade.php @@ -4,7 +4,6 @@ $tag = $attributes->has('href') || $attributes->has(':href') ? 'a' : 'button'; $baseClasses[] = 'inline-block font-semibold py-2 px-4 border rounded disabled:opacity-50 disabled:cursor-not-allowed hover:opacity-75 whitespace-nowrap transition'; $variants = [ - 'primary' => 'bg-primary text-primary-text', 'primary' => 'bg-inactive text-white', 'outline' => 'bg-transparent hover:bg-neutral text-neutral hover:text-white border-neutral hover:border-transparent', 'slider' => ['flex items-center justify-center rounded-full w-12 h-12 bg-white border hover:bg-neutral hover:text-white'],