From b7af1778397c31049ed058dbe5787654514d53ac Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr l3wdfut4pwr Date: Wed, 28 Jan 2026 16:57:26 +0200 Subject: add modal tabs --- src/components/ui/checkbox.tsx | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/components/ui/checkbox.tsx (limited to 'src/components/ui/checkbox.tsx') diff --git a/src/components/ui/checkbox.tsx b/src/components/ui/checkbox.tsx new file mode 100644 index 0000000..67a7773 --- /dev/null +++ b/src/components/ui/checkbox.tsx @@ -0,0 +1,32 @@ +'use client'; + +import CheckIcon from '@icons/check.svg'; +import * as React from 'react'; +import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; + +import { cn } from '@/lib/utils'; + +function Checkbox({ + className, + ...props +}: React.ComponentProps) { + return ( + + + + + + ); +} + +export { Checkbox }; -- cgit v1.3-3-g829e