refactor: update radio component to handle boolean values instead of numeric (#24956)

This commit is contained in:
17hz
2025-09-02 15:11:42 +08:00
committed by GitHub
parent d6b3df8f6f
commit 2ac8f8003f
5 changed files with 15 additions and 21 deletions

View File

@@ -5,7 +5,7 @@ import cn from '@/utils/classnames'
export type TRadioGroupProps = {
children?: ReactNode | ReactNode[]
value?: string | number
value?: string | number | boolean
className?: string
onChange?: (value: any) => void
}