'use client'; import React, { forwardRef } from 'react'; import type { AnimationRepeat, AnimationTrigger } from './types'; import { mergeRefs, repeatToCss, useAnimationTrigger, usePixelAnimations } from './_internal/animation-hooks'; /* ───────────────────────────────────────────────────────────────────────── PixelSlideIn — translates children in from one of four edges. ───────────────────────────────────────────────────────────────────────── */ export interface PixelSlideInProps { /** Content to slide in. */ children: React.ReactNode; /** Edge to slide from. Default `'down'`. */ from?: 'up' | 'down' | 'left' | 'right'; /** Animation duration in milliseconds. Default `350`. */ duration?: number; /** Animation delay in milliseconds. Default `0`. */ delay?: number; /** Translate distance in pixels. Default `10`. */ distance?: number; /** Iteration count: a number or `'infinite'`. Default `1`. */ repeat?: AnimationRepeat; /** CSS `animation-timing-function`. Default `'ease'`. */ easing?: string; /** CSS `animation-fill-mode`. Default `'both'`. */ fillMode?: 'none' | 'forwards' | 'backwards' | 'both'; /** When the animation should play. Default `'mount'`. */ trigger?: AnimationTrigger; /** Fires after the final iteration. */ onComplete?: () => void; /** Extra class names applied to the wrapping `