# Animate

A wrapper component that provides animation utilities for child elements.

---

## Installation

```bash
npm install @cleartrip/ct-design-animate
# or
pnpm add @cleartrip/ct-design-animate
```

### Peer dependencies

```bash
# Required for all targets
npm install react

# Web only
npm install react-dom

# React Native only
npm install react-native
```

---

## Usage

### Basic

```tsx
import { Animate } from '@cleartrip/ct-design-animate';

function Example() {
  return (
    <Animate>
      {/* Basic usage */}
    </Animate>
  );
}
```

---

## AnimationVariant

- `SHAKE` — SHAKE
---

## Accessibility

- The component follows accessibility best practices
- Ensure proper ARIA attributes are provided where needed
- Test with screen readers to ensure usability

---

## Migration

If migrating from a previous version:

```diff
- import { Animate } from 'yagami/core/components';
+ import { Animate } from '@cleartrip/ct-design-animate';
```
