"use client"; import { useReducedMotion } from "./Preferences.tsx"; import type { ReactNode } from "react"; import { motion } from "motion/react"; import { EASE_EXPO } from "./easings.ts"; export function MaskLine({ children, delay = 0, y = "112%", className = "", style, }: { children: ReactNode; delay?: number; y?: string; className?: string; style?: React.CSSProperties; }) { const reduce = useReducedMotion(); return ( {children} ); }