typebot sessions

This commit is contained in:
Gabriel Pastori
2023-12-12 18:04:28 -03:00
parent 4048553c64
commit f7cd69bf53
6 changed files with 255 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
// opened, paused, closed
export default {
opened: {
color: "green",
text: "Aberto",
icon: "mdi-play",
},
paused: {
color: "warning",
text: "Pausado",
icon: "mdi-pause",
},
closed: {
color: "red",
text: "Fechado",
icon: "mdi-stop",
},
}