remove unused packages

This commit is contained in:
Eduard Gert
2026-05-28 17:18:49 +02:00
parent 4556d52a60
commit 2bf945e745
3 changed files with 3 additions and 29 deletions

View File

@@ -1,8 +1,9 @@
import { cva, VariantProps } from "class-variance-authority";
import classNames from "classnames";
import { Check, Copy } from "lucide-react";
import { ButtonHTMLAttributes, forwardRef, useState } from "react";
import { cn } from "@/lib/cn";
type ButtonVariants = VariantProps<typeof buttonVariants>;
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, ButtonVariants {
@@ -134,7 +135,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(function Button
ref={ref}
type={type}
disabled={disabled}
className={classNames(
className={cn(
buttonVariants({
variant,
rounded,