const CLASS_PREFIX = 'md-link';

const DEFAULTS = {
  DISABLED: false,
  INVERTED: false,
};

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

export { CLASS_PREFIX, DEFAULTS, STYLE };
