I have a lot of image imports into a relatively short .jsx file. I was wondering what is the best practice for imports, can I store these in a separate file and just import as one line item?
import increaseIcon from '../../../../src/assets/xSmall_Arrow-NE.svg';
import equalIcon from '../../../../src/assets/xSmall_Equal.svg';
import decreaseIcon from '../../../../src/assets/xSmall_Arrow-SE.svg';
import lowBatteryIcon from '../../../../src/assets/xSmall_Battery-low.svg';
import checkIcon from '../../../../src/assets/xSmall_Check.svg';
import lowDataIcon from '../../../../src/assets/xSmall_Data-low.svg';
import moreIcon from '../../../../src/assets/xSmall_More.svg';
import triangleDownIcon from '../../../../src/assets/xSmall_Arrow-dropdown.svg';
import infoIcon from '../../../../src/assets/xSmall_Info.svg';
import backIcon from '../../../../src/assets/Small_Back.svg';
import checkedIcon from '../../../../src/assets/Small_Box-checked.svg';
import disableIcon from '../../../../src/assets/Small_Box-disable.svg';
import smallBurgerIcon from '../../../../src/assets/Small_Burger-menu.svg';
import chartIcon from '../../../../src/assets/Small_Chart.svg';
import smallCloseIcon from '../../../../src/assets/Small_Close.svg';
import dashboardIcon from '../../../../src/assets/Small_Dashboard.svg';
import downloadIcon from '../../../../src/assets/Small_Download.svg';
import hivesIcon from '../../../../src/assets/Small_Hives.svg';
import smallInfoIcon from '../../../../src/assets/Small_Info.svg';
import layersIcon from '../../../../src/assets/Small_Layers.svg';
import listIcon from '../../../../src/assets/Small_List.svg';
import locationIcon from '../../../../src/assets/Small_Location.svg';
import notificationIcon from '../../../../src/assets/Small_Mobile-Menu-Notification.svg';
import passHideIcon from '../../../../src/assets/Small_pass-Hide.svg';
import passShowIcon from '../../../../src/assets/Small_pass-Show.svg';
import radioCheckedIcon from '../../../../src/assets/Small_Radio-checked.svg';
import radioUncheckedIcon from '../../../../src/assets/Small_Radio-unchecked.svg';
import shareIcon from '../../../../src/assets/Small_Share.svg';
etc...