From a872a478c0815041c4808ea7b2621103158f45b2 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 22 Aug 2026 23:08:19 +0000 Subject: [PATCH] Terminal --- src/components/ui/checkbox.tsx | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/components/ui/checkbox.tsx diff --git a/src/components/ui/checkbox.tsx b/src/components/ui/checkbox.tsx deleted file mode 100644 index f01d47c..0000000 --- a/src/components/ui/checkbox.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import * as React from "react"; -import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; -import { Check } from "lucide-react"; - -import { cn } from "@/lib/utils"; - -const Checkbox = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, ...props }, ref) => ( - - - - - -)); -Checkbox.displayName = CheckboxPrimitive.Root.displayName; - -export { Checkbox };