/** * DTRadioGroup — Hexagonal radio buttons. * * CSS reference: forms-dt.css input[type="radio"], .dt-radio-option */ import { useId, type CSSProperties } from 'react'; import { cx } from '../utils/cx'; interface DTRadioOption { value: string; label: string; } interface DTRadioGroupProps { options: DTRadioOption[]; value: string; onChange: (value: string) => void; name?: string; className?: string; style?: CSSProperties; } export { type DTRadioOption }; export function DTRadioGroup({ options, value, onChange, name, className, style, }: DTRadioGroupProps) { const groupId = useId(); const groupName = name || `dt-radio-${groupId}`; return (