({ theme: themeOverrides, ...props }: Props)
| 73 | * ``` |
| 74 | */ |
| 75 | const RadioButton = ({ theme: themeOverrides, ...props }: Props) => { |
| 76 | const theme = useInternalTheme(themeOverrides); |
| 77 | |
| 78 | const Button = Platform.select({ |
| 79 | default: RadioButtonAndroid, |
| 80 | ios: RadioButtonIOS, |
| 81 | }); |
| 82 | |
| 83 | return <Button {...props} theme={theme} />; |
| 84 | }; |
| 85 | |
| 86 | export default RadioButton; |
nothing calls this directly
no test coverage detected
searching dependent graphs…