/* eslint-disable no-console */ import React from 'react'; import { Center, Radio, RadioGroup, RadioIcon, RadioIndicator, RadioLabel, VStack, HStack, Heading, Text, FormControl, CircleIcon, } from '@gluestack-ui/themed'; const RadioBasic = ({ ...props }: any) => { const [values, setValues] = React.useState('Label 1'); return ( console.log(nextValue, 'nextValue')} gap="$3" > Label 1 console.log(nextValue, 'nextValue')} gap="$3" > Label 2 ); }; RadioBasic.description = 'This is a basic Radio component example. Radio buttons are used to select a single option from a list of options.'; export default RadioBasic; export { Radio, RadioGroup, RadioIcon, RadioIndicator, RadioLabel, CircleIcon, Center, VStack, HStack, Heading, Text, FormControl, };