how to import all the icons using one import statement as I have to use 50 icons in this project

import BookmarkCheck from "../Icons/bookmark-check.svg";
import BookmarkOff from "../Icons/bookmark-off.svg";
import Bookmark from "../Icons/bookmark.svg";

export const Data = [
  {
    icon: BookmarkCheck,
    title: "Bookmark Checked",
  },
  {
    icon: BookmarkOff,
    title: "Bookmark Off",
  },
  {
    icon: Bookmark,
    title: "Bookmark",
  },
];

I want to shorten the number of import statements as i have to import 50 icons from a Icons folder.