import React from "react"; import AllInboxIconOutlined from "@mui/icons-material/AllInboxOutlined"; import HomeIconOutlined from "@mui/icons-material/HomeOutlined"; import LocalShippingIconOutlined from "@mui/icons-material/LocalShippingOutlined"; import StoreIconOutlined from "@mui/icons-material/StoreOutlined"; import { SvgIconTypeMap } from "@mui/material/SvgIcon"; import { ShipmentDestinationType } from "../types/shipment"; export type ShipmentDestinationIconProps = SvgIconTypeMap["props"] & { type: ShipmentDestinationType; }; export const ShipmentDestinationIcon: React.FC = ({ type, ...props }) => { return { HOME: , LOCKER: , SERVICE_POINT: , STORE: , }[type]; };