diff --git a/components/radio/Group.tsx b/components/radio/Group.tsx index ea78a984e..968c98713 100644 --- a/components/radio/Group.tsx +++ b/components/radio/Group.tsx @@ -17,7 +17,7 @@ const RadioGroupOptionTypes = tuple('default', 'button'); export type RadioGroupOption = typeof RadioGroupOptionTypes[number]; export type RadioGroupChildOption = { - label: any; + label?: any; value: any; disabled?: boolean; };