/**
 * SVG sprite icon base class.
 * Usage (after symbols are added to public/icons/sprite.svg):
 *   <svg class="ic" aria-hidden="true"><use href="#icon-name"></use></svg>
 */
.ic {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.ic * {
    fill: none;
    stroke: inherit;
    stroke-width: inherit;
    stroke-linecap: inherit;
    stroke-linejoin: inherit;
}
