JSFiddle - React, Tailwind, and code Playground

by adelura

HTML

<button class="c-btn">Standard</button>

<button class="c-btn--fill-width">Full width</button>

SCSS

@mixin full-width {
    width: 100%;
}

.c-btn {
    &--full-width {
        @include full-width;
    }
}