import React from 'react'; import classNames from 'classnames'; import { LocalizerType } from '../../types/Util'; interface Props { i18n: LocalizerType; color?: string; } export class TypingAnimation extends React.Component { public render() { const { i18n, color } = this.props; return (
); } }