"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 = ( { ref, className, ...props }: React.ComponentPropsWithoutRef & { ref: React.RefObject>; } ) => { return ( ); }; RadioGroup.displayName = RadioGroupPrimitive.Root.displayName; const RadioGroupItem = ( { ref, className, ...props }: React.ComponentPropsWithoutRef & { ref: React.RefObject>; } ) => { return ( ); }; RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName; export { RadioGroup, RadioGroupItem };