'use client'; import * as React from 'react'; import { CheckIcon } from '@radix-ui/react-icons'; import * as RadioGroupPrimitive from '@radix-ui/react-radio-group'; import { cn } from '../utils/cn'; const RadioGroup = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => { return ( ); }); RadioGroup.displayName = RadioGroupPrimitive.Root.displayName; const RadioGroupItem = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => { return ( ); }); RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName; const RadioGroupItemLabel = ( props: React.PropsWithChildren<{ className?: string; selected?: boolean; }>, ) => { return ( ); }; RadioGroupItemLabel.displayName = 'RadioGroupItemLabel'; export { RadioGroup, RadioGroupItem, RadioGroupItemLabel };