const CLASS_PREFIX = 'md-accordion';

const DEFAULTS = {
  DEFAULT_EXPANDED: true,
};

const STYLE = {
  wrapper: `${CLASS_PREFIX}-wrapper`,
  headerRow: `${CLASS_PREFIX}-header-row`,
  headerHeading: `${CLASS_PREFIX}-header-heading`,
  headerButton: `${CLASS_PREFIX}-header-button`,
};

export { CLASS_PREFIX, DEFAULTS, STYLE };
