import React from 'react'; import { IconsType } from './Types'; import { SvgIcon } from '@mui/material'; import AppsIcon from '@mui/icons-material/Apps'; import CancelIcon from '@mui/icons-material/Cancel'; import AttuIcon from '@/assets/icons/attu.svg?react'; import ConsoleIcon from '@/assets/icons/console.svg?react'; import KeyIcon from '@/assets/icons/key.svg?react'; import SearchEmptyIcon from '@/assets/icons/search.svg?react'; import Compact from '@/assets/icons/compact.svg?react'; const icons: { [x in IconsType]: (props?: any) => React.ReactElement } = { search: (props = {}) => ( ), add: (props = {}) => ( ), addOutline: (props = {}) => ( ), delete: (props = {}) => ( ), deleteOutline: (props = {}) => ( ), list: (props = {}) => ( ), copy: (props = {}) => ( ), error: (props = {}) => , clear: (props = {}) => ( ), app: (props = {}) => , visible: (props = {}) => ( ), invisible: (props = {}) => ( ), back: (props = {}) => ( ), logout: (props = {}) => ( ), rightArrow: (props = {}) => ( ), remove: (props = {}) => ( ), dropdown: (props = {}) => ( ), filter: (props = {}) => ( ), download: (props = {}) => ( ), edit: (props = {}) => ( ), attu: (props = {}) => ( ), zilliz: (props = {}) => ( ), refresh: (props = {}) => ( ), navPerson: (props = {}) => ( ), navOverview: (props = {}) => ( ), navCollection: (props = {}) => ( ), navConsole: (props = {}) => ( ), navSearch: (props = {}) => ( ), navSystem: (props = {}) => ( ), settings: (props = {}) => ( ), info: (props = {}) => ( ), release: (props = {}) => ( ), load: (props = {}) => ( ), key: (props = {}) => ( ), saveAs: (props = {}) => ( ), upload: (props = {}) => ( ), vectorSearch: (props = {}) => ( ), database: (props = {}) => ( ), copyExpression: (props = {}) => ( ), source: (props = {}) => ( ), uploadFile: (props = {}) => ( ), compact: (props = {}) => ( ), avatar: (props = {}) => ( ), flush: (props = {}) => ( ), next: (props = {}) => ( ), prev: (props = {}) => ( ), expand: (props = {}) => ( ), github: (props = {}) => ( ), discord: (props = {}) => ( ), question: (props = {}) => ( ), check: (props = {}) => ( ), star: (props = {}) => ( ), magic: (props = {}) => ( ), code: (props = {}) => ( ), reset: (props = {}) => ( ), link: (props = {}) => ( ), cross: (props = {}) => ( ), }; export default icons;