'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 '../lib/utils'; const RadioGroup: React.FC< React.ComponentPropsWithRef > = ({ className, ...props }) => { return ( ); }; RadioGroup.displayName = RadioGroupPrimitive.Root.displayName; const RadioGroupItem: React.FC< React.ComponentPropsWithoutRef > = ({ className, ...props }) => { return ( ); }; RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName; const RadioGroupItemLabel = ( props: React.PropsWithChildren<{ className?: string; selected?: boolean; }>, ) => { return ( ); }; RadioGroupItemLabel.displayName = 'RadioGroupItemLabel'; export { RadioGroup, RadioGroupItem, RadioGroupItemLabel };