/* eslint-disable no-console */ import React from 'react'; import { CircleIcon, Radio, RadioGroup, RadioIcon, RadioIndicator, RadioLabel, } from '@gluestack-ui/themed'; const RadioGroupBasic = ({ size, isDisabled = false, isInvalid = false, isReadOnly = false, ...props }: any) => { const [values, setValues] = React.useState('Label 1'); return ( console.log(nextValue, 'nextValue')} {...props} > Label 1 console.log(nextValue, 'nextValue')} > Label 2 console.log(isSelected, 'isSelected') } > Label 3 ); }; RadioGroupBasic.description = 'This is a basic RadioGroup component example. RadioGroups are form elements that allow users to select one option from a set.'; export default RadioGroupBasic;