import { HomeIcon } from '../svg-icon'; export enum EmptyType { Data = 'data', SearchData = 'search-data', } export enum EmptyCardType { Agent = 'agent', Dataset = 'dataset', Chat = 'chat', Search = 'search', Memory = 'memory', Skills = 'skills', } export const EmptyCardData = { [EmptyCardType.Agent]: { icon: , titleKey: 'empty.agentTitle', notFoundKey: 'empty.notFoundAgent', }, [EmptyCardType.Dataset]: { icon: , titleKey: 'empty.datasetTitle', notFoundKey: 'empty.notFoundDataset', }, [EmptyCardType.Chat]: { icon: , titleKey: 'empty.chatTitle', notFoundKey: 'empty.notFoundChat', }, [EmptyCardType.Search]: { icon: , titleKey: 'empty.searchTitle', notFoundKey: 'empty.notFoundSearch', }, [EmptyCardType.Memory]: { icon: , titleKey: 'empty.memoryTitle', notFoundKey: 'empty.notFoundMemory', }, [EmptyCardType.Skills]: { icon: , titleKey: 'empty.skillsTitle', notFoundKey: 'empty.notFoundSkills', }, };