wp_list_categories() – adding a div to each li?

You can use CSS pseudo selectors to include the icons. :before if you need in front of the categories or :after for placing it to the right.

li.cat-item::before {
  content: url("Icon image URL here");
}