// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates // SPDX-License-Identifier: MIT import { motion, AnimatePresence } from "framer-motion"; import { cn } from "~/lib/utils"; export function RollingText({ className, children, }: { className?: string; children?: string | string[]; }) { return ( {children} ); }