import { IconReport, IconShare } from '@/components/icon';

const handleOptionClick = (): void => {
  console.log('clicked!');
};

export const DROPDOWN_DATA = [
  { label: 'Place a bid', callback: handleOptionClick },
  { label: 'Buy now', callback: handleOptionClick },
  { label: 'Normal', callback: handleOptionClick },
  {
    label: 'Share',
    icon: IconShare,
    callback: handleOptionClick,
  },
  {
    label: 'Report',
    icon: IconReport,
    textColor: 'red',
    callback: handleOptionClick,
  },
];

export const DROPDOWN_LINK = {
  href: 'https://grandbazar.io/',
  target: '_blank',
  option: {
    label: 'Grandbazar',
  },
};
