@import "../style-scss/import";

.mu-icon-button {
    position: relative;
    display: inline-block;
    overflow: visible;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    padding: 12px;
    border: none;
    appearance: none;
    background: none;
    color: inherit;
    text-decoration: none;
    transition-duration: 300ms;
    transition-timing-function: $easeOutFunction;
    transform: translate3d(0, 0, 0);
    @include flex-shrink(0);
    margin: 0;
    outline: 0;
    cursor: pointer;
    .mu-circle-ripple {
        color: $textColor;
    }
    &.disabled {
        color: $disabledColor;
        cursor: not-allowed;
    }
}