<!-- Default -->
<span class="spacedout " style="">Spaced out label</span>

<!-- Small -->
<span class="spacedout _small" style="">Spaced out label</span>

<span class="spacedout {{modifier}}" style="{{style}}">{{{text}}}</span>
/* Default */
{
  "text": "Spaced out label"
}

/* Small */
{
  "text": "Spaced out label",
  "modifier": "_small"
}

  • Content:
    .spacedout {
        @include spaced-out;
        &._small {
            @include font-size-small;
        }
        &._fine {
            @include font-size-fine;
        }
        &._gray {
            color: get-color(neutral, 300);
        }
    }
    
  • URL: /components/raw/spacedout/SpacedOut.scss
  • Filesystem Path: components/atoms/SpacedOut/SpacedOut.scss
  • Size: 208 Bytes

There are no notes for this item.