mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 12:47:50 +00:00
29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
'use client';
|
|
|
|
import { CheckIcon } from '@heroicons/react/24/outline';
|
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
import { cn } from 'lib/utils';
|
|
import { forwardRef } from 'react';
|
|
|
|
const Checkbox = forwardRef<
|
|
React.ElementRef<typeof CheckboxPrimitive.Root>,
|
|
React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>
|
|
>(({ className, ...props }, ref) => (
|
|
<CheckboxPrimitive.Root
|
|
ref={ref}
|
|
className={cn(
|
|
'ring-offset-background focus-visible:ring-ring peer h-4 w-4 shrink-0 rounded-sm border border-dark focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-dark data-[state=checked]:text-white',
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
<CheckboxPrimitive.Indicator className={cn('flex items-center justify-center text-current')}>
|
|
<CheckIcon className="h-4 w-4" />
|
|
</CheckboxPrimitive.Indicator>
|
|
</CheckboxPrimitive.Root>
|
|
));
|
|
|
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
|
|
export { Checkbox };
|