feat: Add CSAT reports (#2608)

This commit is contained in:
Pranav Raj S
2021-07-14 10:20:06 +05:30
committed by GitHub
parent b7806fc210
commit cb44eb2964
34 changed files with 1120 additions and 57 deletions

View File

@@ -18,25 +18,30 @@ export const CSAT_RATINGS = [
key: 'disappointed',
emoji: '😞',
value: 1,
color: '#FDAD2A',
},
{
key: 'expressionless',
emoji: '😑',
value: 2,
color: '#FFC532',
},
{
key: 'neutral',
emoji: '😐',
value: 3,
color: '#FCEC56',
},
{
key: 'grinning',
emoji: '😀',
value: 4,
color: '#6FD86F',
},
{
key: 'smiling',
emoji: '😍',
value: 5,
color: '#44CE4B',
},
];