const CLASS_PREFIX = 'md-button-group';

const DEFAULTS = {
  ROUND: false,
  SPACED: false,
  COMPRESSED: false,
  SEPARATOR: false,
  ORIENTATION: 'horizontal',
};

const STYLE = {
  wrapper: `${CLASS_PREFIX}-wrapper`,
  separator: `${CLASS_PREFIX}-separator`,
};

export { CLASS_PREFIX, DEFAULTS, STYLE };
