/*
 * The glyph strokes `currentColor`, so ONE declaration paints it: the wrapper's
 * ink. `--lotics-icon-color` is the caller's own value when it passed one, and
 * the fallback is the ink role — a token, not a second copy of a colour.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* An icon never gives way: it is the one thing on a row with no readable
       shorter form. */
    flex-shrink: 0;
    color: var(--lotics-icon-color, var(--lotics-ink-default));
    line-height: 1;
  }
}
