@botonic/react
Version:
Build Chatbots using React
6 lines • 475 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import './typing-indicator.scss';
import React from 'react';
import { COLORS, ROLES } from '../../constants';
export const TypingIndicator = props => (_jsxs("div", Object.assign({ role: ROLES.TYPING_INDICATOR, className: 'typing-indicator', style: { backgroundColor: COLORS.SEASHELL_WHITE } }, { children: [_jsx("span", {}), _jsx("span", {}), _jsx("span", {})] })));
//# sourceMappingURL=typing-indicator.js.map