rohan13's picture
Flowise Changes
4114d85
// assets
import { IconTrash, IconFileUpload, IconFileExport, IconCopy } from '@tabler/icons'
// constant
const icons = { IconTrash, IconFileUpload, IconFileExport, IconCopy }
// ==============================|| SETTINGS MENU ITEMS ||============================== //
const settings = {
id: 'settings',
title: '',
type: 'group',
children: [
{
id: 'duplicateChatflow',
title: 'Duplicate Chatflow',
type: 'item',
url: '',
icon: icons.IconCopy
},
{
id: 'loadChatflow',
title: 'Load Chatflow',
type: 'item',
url: '',
icon: icons.IconFileUpload
},
{
id: 'exportChatflow',
title: 'Export Chatflow',
type: 'item',
url: '',
icon: icons.IconFileExport
},
{
id: 'deleteChatflow',
title: 'Delete Chatflow',
type: 'item',
url: '',
icon: icons.IconTrash
}
]
}
export default settings