import CheckBox from '@material-hu/icons/material/CheckBox';
import CheckBoxOutlineBlank from '@material-hu/icons/material/CheckBoxOutlineBlank';
import RadioButtonChecked from '@material-hu/icons/material/RadioButtonChecked';
import RadioButtonUnchecked from '@material-hu/icons/material/RadioButtonUnchecked';

import { FormOptionsTypes } from './types';

export const OPTION_ICONS = {
  [FormOptionsTypes.RADIO]: {
    Icon: RadioButtonChecked,
    BlankIcon: RadioButtonUnchecked,
  },
  [FormOptionsTypes.CHECKBOX]: {
    Icon: CheckBox,
    BlankIcon: CheckBoxOutlineBlank,
  },
  [FormOptionsTypes.LIST]: {
    Icon: null,
    BlankIcon: null,
  },
};
