You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			786 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			786 B
		
	
	
	
		
			TypeScript
		
	
| import React from 'react';
 | |
| import classNames from 'classnames';
 | |
| 
 | |
| export const TypingAnimation = () => {
 | |
|   return (
 | |
|     <div className="module-typing-animation" title={window.i18n('typingAlt')}>
 | |
|       <div
 | |
|         className={classNames(
 | |
|           'module-typing-animation__dot',
 | |
|           'module-typing-animation__dot--first'
 | |
|         )}
 | |
|       />
 | |
|       <div className="module-typing-animation__spacer" />
 | |
|       <div
 | |
|         className={classNames(
 | |
|           'module-typing-animation__dot',
 | |
|           'module-typing-animation__dot--second'
 | |
|         )}
 | |
|       />
 | |
|       <div className="module-typing-animation__spacer" />
 | |
|       <div
 | |
|         className={classNames(
 | |
|           'module-typing-animation__dot',
 | |
|           'module-typing-animation__dot--third'
 | |
|         )}
 | |
|       />
 | |
|     </div>
 | |
|   );
 | |
| };
 |