Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

61 Zeilen
1.1 KiB

  1. // assets
  2. import {
  3. AppstoreAddOutlined,
  4. AntDesignOutlined,
  5. BarcodeOutlined,
  6. BgColorsOutlined,
  7. FontSizeOutlined,
  8. LoadingOutlined
  9. } from '@ant-design/icons';
  10. // icons
  11. const icons = {
  12. FontSizeOutlined,
  13. BgColorsOutlined,
  14. BarcodeOutlined,
  15. AntDesignOutlined,
  16. LoadingOutlined,
  17. AppstoreAddOutlined
  18. };
  19. // ==============================|| MENU ITEMS - UTILITIES ||============================== //
  20. const utilities = {
  21. id: 'utilities',
  22. title: 'Utilities',
  23. type: 'group',
  24. children: [
  25. {
  26. id: 'util-typography',
  27. title: 'Typography',
  28. type: 'item',
  29. url: '/typography',
  30. icon: icons.FontSizeOutlined
  31. },
  32. {
  33. id: 'util-color',
  34. title: 'Color',
  35. type: 'item',
  36. url: '/color',
  37. icon: icons.BgColorsOutlined
  38. },
  39. {
  40. id: 'util-shadow',
  41. title: 'Shadow',
  42. type: 'item',
  43. url: '/shadow',
  44. icon: icons.BarcodeOutlined
  45. },
  46. {
  47. id: 'ant-icons',
  48. title: 'Ant Icons',
  49. type: 'item',
  50. url: '/icons/ant',
  51. icon: icons.AntDesignOutlined,
  52. breadcrumbs: false
  53. }
  54. ]
  55. };
  56. export default utilities;