/**
 * Icon system
 */

.v-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: var(--v-icon-size-md);
  height: var(--v-icon-size-md);
  line-height: 0;
  color: currentColor;
  vertical-align: middle;
}

.v-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v-icon--sm {
  width: var(--v-icon-size-sm);
  height: var(--v-icon-size-sm);
}

.v-icon--lg {
  width: var(--v-icon-size-lg);
  height: var(--v-icon-size-lg);
}

.v-icon--xl {
  width: 2rem;
  height: 2rem;
}

.v-icon--fill svg {
  fill: currentColor;
  stroke: none;
}
