How to add space between <RadzenRadioButtonListItem>

I have a group of vertical radio buttons. I want to larger space between radio buttons. I would like to know how to do it?
thank you!
John

As with anything HTML related you can use CSS to add space between radio buttons.

.radio-button-list-vertical .p-radiobutton {
  margin-top: 32px;
  margin-bottom: 32px;
}