import styles from './loading-ellipsis.module.css'; interface LoadingEllipsisProps { string: string; } const LoadingEllipsis = ({ string }: LoadingEllipsisProps) => { const words = string.split(' '); const lastWord = words.pop(); const restOfString = words.join(' '); return ( {restOfString} {restOfString && ' '} {lastWord} ); }; export default LoadingEllipsis;