const CLASS_PREFIX = 'md-alert-badge';

const DEFAULTS = {};

const COLORS = {
  ERROR: 'error',
  SUCCESS: 'success',
  THEME: 'theme',
  WARNING: 'warning',
};

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

export { CLASS_PREFIX, COLORS, DEFAULTS, STYLE };
