22 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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'
 | 
						|
  }
 | 
						|
]
 |