Certain props are shared across all form-related components, and you can find them in the form wrapper.
By using the class prop, you can apply custom classes or Tailwind CSS classes to customize the appearance and behavior of the gallery, allowing for flexible design changes.
Radio component
The radio component lets users select one option from a group, with the
checked
prop determining which option is selected by default. Only one radio button can be selected at a time, making it ideal for choosing between mutually exclusive options like contact methods or shipping choices.
<.radio_fieldname="female" value="female" label="female" /> <.radio_field name="male" value="male" label="Male" checked />