RadioOption
- React
To implement RadioOption component into your project you'll need to add the import:
import { RadioOption } from "@shoptet/ui";
After adding import into your project you can use it simply like:
<RadioOption
textLabel="Label"
name="exampleRadio"
value="option1"
checked={false}
disabled={false}
onChange={() => {}}
data-testid="radio-option"
/>