/* stylelint-disable */

// ============================================================================
// :: Icon class names
// ============================================================================
/**
 * Created with the 'gulp iconfont' gulp-task, the source template of this
 * file can be found in src/assets/_templates/icons/template.lodash
 */

// ============================================================================
// :: arrow-down
// ============================================================================
%__bp-icon-arrow-down {

  &::before {
    @extend %___default-icon;

    content: "\EA01";
    font-family: "bp-icons";
  }
}

.bp-icon-arrow-down {
  @extend %__bp-icon-arrow-down;
}

// ============================================================================
// :: arrow-right
// ============================================================================
%__bp-icon-arrow-right {

  &::before {
    @extend %___default-icon;

    content: "\EA02";
    font-family: "bp-icons";
  }
}

.bp-icon-arrow-right {
  @extend %__bp-icon-arrow-right;
}

// ============================================================================
// :: code
// ============================================================================
%__bp-icon-code {

  &::before {
    @extend %___default-icon;

    content: "\EA03";
    font-family: "bp-icons";
  }
}

.bp-icon-code {
  @extend %__bp-icon-code;
}

// ============================================================================
// :: fullscreen
// ============================================================================
%__bp-icon-fullscreen {

  &::before {
    @extend %___default-icon;

    content: "\EA04";
    font-family: "bp-icons";
  }
}

.bp-icon-fullscreen {
  @extend %__bp-icon-fullscreen;
}

// ============================================================================
// :: search
// ============================================================================
%__bp-icon-search {

  &::before {
    @extend %___default-icon;

    content: "\EA05";
    font-family: "bp-icons";
  }
}

.bp-icon-search {
  @extend %__bp-icon-search;
}
