24 lines
		
	
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export const CHAR_LIMIT = 500
 | |
| 
 | |
| export const POST_PRIVACY_OPTIONS = [
 | |
|   {
 | |
|     label: 'Public',
 | |
|     key: 'public',
 | |
|     icon: '#fa-globe'
 | |
|   },
 | |
|   {
 | |
|     label: 'Unlisted',
 | |
|     key: 'unlisted',
 | |
|     icon: '#fa-unlock'
 | |
|   },
 | |
|   {
 | |
|     label: 'Followers-only',
 | |
|     key: 'private',
 | |
|     icon: '#fa-lock'
 | |
|   },
 | |
|   {
 | |
|     label: 'Direct',
 | |
|     key: 'direct',
 | |
|     icon: '#fa-envelope'
 | |
|   }
 | |
| ]
 |