@keyframes wipe-in-left {
  from {
    clip-path: var(--wipe-right);
  }
  to {
    clip-path: var(--wipe-in);
  }
}

[transition-style="in:wipe:left"] {
  animation-name: wipe-in-left;
}