Home Reference Source

src/components/widgets/Table/cells/IconCell/cellTypes.js

/**
 * Описывает типы для IconCell
 */

const textPlaceTypes = {
  LEFT: 'left',
  RIGHT: 'right',
};

const iconCellTypes = {
  ICON: 'icon',
  ICONANDTEXT: 'iconAndText',
};

export { iconCellTypes, textPlaceTypes };