"use client"; import { useState } from "react"; import LottieIcon from "~/app/components/LottieIcon"; import chatIcon from "~/app/assets/chat.json"; const FeedbackButton: React.FC = () => { const [isHovered, setIsHovered] = useState(false); const [index, setIndex] = useState(0); const handleMouseEnter = () => { setIsHovered(true); setIndex((index) => index + 1); }; return ( ); }; export default FeedbackButton;