function TypingIndicatorDot()

in components/Chat.tsx [17:30]


function TypingIndicatorDot({
  delay,
  color,
}: {
  delay: string;
  color: string;
}) {
  return (
    <span
      className={`w-1 h-1 rounded-full animate-bounce ${color}`}
      style={{ animationDelay: delay }}
    />
  );
}