createClassName() {
    const align = this.props.align && this.props.align.substring(0, 1).toUpperCase() + this.props.align.substring(1);
    return [styles[`nav${align}`], this.props.isMenu ? styles.navMenu : '', this.props.className].join(' ').trim();
  }