import React from 'react';
import IconTest1 from 'terra-icon/lib/icon/IconTrash';
import IconTest2 from 'terra-icon/lib/icon/IconFolder';
import IconTest3 from 'terra-icon/lib/icon/IconSearch';
import IconTest4 from 'terra-icon/lib/icon/IconPrinter';
import IconTest5 from 'terra-icon/lib/icon/IconAllergy';
import IconTest6 from 'terra-icon/lib/icon/IconPadlock';
import IconTest7 from 'terra-icon/lib/icon/IconFeatured';

const testLinksWithIconsConfig = [
  {
    path: '/test1',
    text: 'test 1',
    icon: <IconTest1 />,
  },
  {
    path: '/test2',
    text: 'test 2',
    icon: <IconTest2 />,
  },
  {
    path: '/test3',
    text: 'test 3',
    icon: <IconTest3 />,
  },
  {
    path: '/test4',
    text: 'test 4',
    icon: <IconTest4 />,
  },
  {
    path: '/test5',
    text: 'test 5',
    icon: <IconTest5 />,
  },
  {
    path: '/test6',
    text: 'test 6',
    icon: <IconTest6 />,
  },
  {
    path: '/test7',
    text: 'test 7',
    icon: <IconTest7 />,
  },
];

export default testLinksWithIconsConfig;
