@use "../../style/mixins" as *;

@mixin switch-bg($size) {
  width: $size;
  height: $size;
  border-radius: $size;

  &::before {
    content: '';
    width: calc(($size - 22px) / 2) + 10px;
    height: calc(($size - 22px) / 2) + 10px;

    @include loader;

    display: none;
  }
}

