import React from 'react'; import { clsx } from 'clsx'; export interface RadioOption { value: string; label: string; description?: string; disabled?: boolean; } export interface RadioGroupProps { options: RadioOption[]; value?: string; onChange?: (value: string) => void; name: string; className?: string; orientation?: 'horizontal' | 'vertical'; } /** * Radio group component */ export const RadioGroup = ({ options, value, onChange, name, className, orientation = 'vertical', }: RadioGroupProps) => { return (