import React from 'react'; import classNames from 'classnames'; import { LocalizerType } from '../../types/Util'; export interface Props { i18n: LocalizerType; color?: string; } export const TypingAnimation = ({ i18n, color }: Props): JSX.Element => (
);