import * as React from 'react' import { RadioGroup as BaseRadioGroup } from '@base-ui/react/radio-group' import { cn } from '../../internal/utils' interface RadioGroupProps extends React.ComponentProps { /** * Lay options out in a row or column; sets which arrow keys move selection. * @default 'vertical' */ orientation?: 'horizontal' | 'vertical' } function RadioGroup({ className, orientation = 'vertical', ...props }: RadioGroupProps) { const horizontal = orientation === 'horizontal' return ( ) } export { RadioGroup } export type { RadioGroupProps }