"use client"; import React from "react"; import { motion } from "framer-motion"; import { Box, Stack } from "@mui/material"; export const TypingIndicator = () => { return ( {[0, 1, 2].map((i) => ( ))} ); }; export const Blob = ({ color, size, top, left, delay, }: { color: string; size: number; top: string; left: string; delay: number; }) => ( );