// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates // SPDX-License-Identifier: MIT import { cn } from "~/lib/utils"; import styles from "./rainbow-text.module.css"; export function RainbowText({ animated, className, children, }: { animated?: boolean; className?: string; children?: React.ReactNode; }) { return ( {children} ); }