feat: Add customer satisfaction component (#2456)

This commit is contained in:
Muhsin Keloth 2021-06-22 13:01:19 +05:30 committed by GitHub
parent a357b657a8
commit 29b9915d3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 225 additions and 6 deletions

View file

@ -12,3 +12,31 @@ export const MESSAGE_TYPE = {
};
// Size in mega bytes
export const MAXIMUM_FILE_UPLOAD_SIZE = 40;
export const CSAT_RATINGS = [
{
key: 'disappointed',
emoji: '😞',
value: 0,
},
{
key: 'expressionless',
emoji: '😑',
value: 1,
},
{
key: 'neutral',
emoji: '😐',
value: 2,
},
{
key: 'grinning',
emoji: '😀',
value: 3,
},
{
key: 'smiling',
emoji: '😍',
value: 4,
},
];