import { IconAlwaysPairsWith, IconAppearsWithAtLeastOne, IconDoesntMixWith, IconOnlyMixesWith } from '@/components';

export const RULES_DATA = [
  {
    value: 'always_pairs_with',
    text: 'Always pairs with',
    icon: <IconAlwaysPairsWith />,
    color: 'bg-blue-ui/5',
  },
  {
    value: 'appears_with_at_least_one',
    text: 'Appears with at least one',
    icon: <IconAppearsWithAtLeastOne />,
    color: 'bg-yellow-ui/5',
  },
  {
    value: 'doesnt_mix_with',
    text: 'Does not mix with',
    icon: <IconDoesntMixWith />,
    color: 'bg-red-ui/5',
  },
  {
    value: 'only_mixes_with',
    text: 'Only mixes with',
    icon: <IconOnlyMixesWith />,
    color: 'bg-green-ui/5',
  },
];
