animation.ibelick
Rotate Out
tailwind.config.ts
{
  "animation": {
    "rotate-out": "rotate-out 0.6s ease-out"
  },
  "rotate-out": {
    "0%": {
      "opacity": "1",
      "transform": "rotate(0deg)"
    },
    "100%": {
      "opacity": "0",
      "transform": "rotate(90deg)"
    }
  }
}