From cb5cb1e594c59876c99f2883a24744ea67b0f2cf Mon Sep 17 00:00:00 2001 From: MacRimi Date: Tue, 4 Nov 2025 18:11:42 +0100 Subject: [PATCH] Create checkbox.tsx --- AppImage/components/ui/checkbox.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 AppImage/components/ui/checkbox.tsx diff --git a/AppImage/components/ui/checkbox.tsx b/AppImage/components/ui/checkbox.tsx new file mode 100644 index 0000000..c697ed4 --- /dev/null +++ b/AppImage/components/ui/checkbox.tsx @@ -0,0 +1,27 @@ +"use client" + +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 }