import React from 'react'; import { Box, as, toRem } from 'folds'; import * as css from './TypingIndicator.css'; export type TypingIndicatorProps = { size?: '300' | '400'; }; export const TypingIndicator = as<'div', TypingIndicatorProps>(({ size, style, ...props }, ref) => ( ));