feat: Add customer satisfaction component (#2456)
This commit is contained in:
parent
a357b657a8
commit
29b9915d3b
11 changed files with 225 additions and 6 deletions
|
@ -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,
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue