# Short Slide Right

The text group slides in from the left while individual words fade in with a stagger.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown variants are available by appending `.md` to any URL or sending an `Accept: text/markdown` header. An agent skill is available at [/.well-known/agent-skills/site-skill.md](/.well-known/agent-skills/site-skill.md).

## Installation

  <TabsTrigger value="cli">Command</TabsTrigger>
  <TabsTrigger value="manual">Manual</TabsTrigger>

```bash
npx shadcn@latest add @framecn/short-slide-right
```

<Step>Copy and paste the following code into your project.</Step>

<Step>Update the import paths to match your project setup.</Step>

## Usage

```tsx
import { ShortSlideRight } from "@/components/framecn/short-slide-right";
```

```tsx
<ShortSlideRight text="Short slide right" />
```

## API Reference

### ShortSlideRight

| Prop               | Type     | Default               |
| ------------------ | -------- | --------------------- |
| `text`             | `string` | `"Short slide right"` |
| `distance`         | `number` | `24`                  |
| `staggerDelay`     | `number` | `3`                   |
| `fontSize`         | `number` | `72`                  |
| `color`            | `string` | `"#171717"`           |
| `fontWeight`       | `number` | `600`                 |
| `speed`            | `number` | `1`                   |
| `fps`              | `number` | `30`                  |
| `durationInFrames` | `number` | `90`                  |
| `className`        | `string` | `-`                   |

## Notes

  The outer container slides as a unit while each word independently fades in
  with a cascading delay, creating a combined motion that feels natural and
  composed.