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