
@import '~styles/config';

.iconButton {
  @include reset-button;
  width: $gutter;
  height: $gutter;

  cursor: pointer;

  &__svg {
    @include colorify('fill');

    .disabled & {
      cursor: not-allowed;
      fill: $color-grey400;
    }
  }

  &:hover {
    opacity: 0.7;
    transition: opacity 200ms ease;
  }
}
