This commit is contained in:
kjs
2025-10-17 16:21:08 +09:00
parent 2a8081a253
commit 2e916678fa
22 changed files with 1641 additions and 871 deletions

View File

@@ -138,9 +138,9 @@ export const RadioBasicComponent: React.FC<RadioBasicComponentProps> = ({
onChange={() => handleRadioChange(option.value)}
disabled={componentConfig.disabled || isDesignMode}
required={componentConfig.required || false}
className="h-4 w-4 border-gray-300 text-blue-600 focus:ring-0"
className="border-input text-primary h-4 w-4 focus:ring-0"
/>
<span className="text-sm text-gray-900">{option.label}</span>
<span className="text-sm">{option.label}</span>
</label>
))}
</div>