"use client"; import { Radio } from "@base-ui/react/radio"; import { RadioGroup as RadioGroupPrimitive } from "@base-ui/react/radio-group"; import { cn } from "./cn"; /* * The primitive owns roving focus, arrow-key selection and the hidden native * inputs that make the group submit with a form. * * Selected uses the brand accent, matching Checkbox and Switch. */ export interface RadioGroupProps extends Omit { className?: string; } function RadioGroup({ className, ...props }: RadioGroupProps) { return ( ); } export interface RadioGroupItemProps extends Omit { className?: string; } function RadioGroupItem({ className, ...props }: RadioGroupItemProps) { return ( ); } export { RadioGroup, RadioGroupItem };