"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 "../../design-lib/utils" import { Label } from "./label" 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 SquareRadioGroupItem = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & { id: string value: string } >(({ className, children, id, value, ...props }, ref) => { return ( ) }) SquareRadioGroupItem.displayName = "SquareRadioGroupItem" export { RadioGroup, RadioGroupItem, SquareRadioGroupItem }