/**
 * Created by William on 23/06/2017.
 */
export const dataProperties = [
  {
    name: "label",
    type: "string",
    default: "null",
    description: "Label of Radio Button",
    options: "any text"
  },
  {
    name: "value",
    type: "string | number",
    default: "null",
    description: "Value of Radio Button that going be returned to model",
    options: "any text"
  },
  {
    name: "nameGroup",
    type: "string",
    default: "null",
    description: "Name of group of Radio Button",
    options: "Any Text"
  },
  {
    name: "orientation",
    type: "string",
    default: "horizontal",
    description: "Orientation of the Radios",
    options: "vertical | horizontal"
  }
  ];
