# Caret Blink Animation ## `animate-caret-blink` Animation for a blinking caret/cursor effect. This animation is typically used in text input fields to indicate where the user can type.
| Class | Styles |
|---|---|
| `animate-caret-blink` | ```css animation: caret-blink 1.25s ease-out infinite; @keyframes caret-blink { 0%, 70%, 100% { opacity: 1; } 20%, 50% { opacity: 0; } } ``` |