const fields: IField[] = [
{
type: "radio",
name: "name-field-radio",
attributes: {
id: "id-field-radio",
classes: ["form-check-input"],
label: "First",
},
extra: {
items: [
{
id: "radio1",
value: 1,
title: "radio 1",
},
{
id: "radio2",
value: 2,
title: "radio 2",
},
],
aligne: "inline",
},
prefix: {
tag: "div",
classes: ["form-group"],
},
},
{
type: "radio",
name: "name-field-radio2",
attributes: {
id: "id-field-radio2",
classes: ["form-check-input"],
label: "Second",
},
extra: {
items: [
{
id: "radio3",
value: 3,
title: "radio 3",
},
{
id: "radio4",
value: 4,
title: "radio 4",
},
],
aligne: "default",
},
prefix: {
tag: "div",
classes: ["form-group"],
},
},
];