12 lines
		
	
	
	
		
			255 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			255 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as React from 'react';
 | |
| 
 | |
| interface Props {
 | |
|   width?: number | string;
 | |
|   height?: number | string;
 | |
| }
 | |
| 
 | |
| export const Skeleton: React.FC<Props> = ({ width, height }) => (
 | |
|   <span className='skeleton' style={{ width, height }}>
 | |
|     ‌
 | |
|   </span>
 | |
| );
 |